From 793046b1ed7c5d98204c877d110a99b519780887 Mon Sep 17 00:00:00 2001 From: Jolan Rensen Date: Fri, 19 Dec 2025 16:05:38 +0100 Subject: [PATCH 1/3] bumping to kotlin 2.3.0 --- docs/StardustDocs/v.list | 2 +- gradle/libs.versions.toml | 2 +- .../jetbrains/kotlinx/dataframe/ExplainerComponentRegistrar.kt | 2 +- .../tests/org/jetbrains/kotlinx/dataframe/GenerateTests.kt | 2 +- .../jetbrains/kotlinx/dataframe/PublicApiModifierRegistrar.kt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/StardustDocs/v.list b/docs/StardustDocs/v.list index 53a19979cf..61988fe527 100644 --- a/docs/StardustDocs/v.list +++ b/docs/StardustDocs/v.list @@ -2,5 +2,5 @@ - + diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 54cbe095c1..e89d99b36e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ kotlinJupyter = "0.16.0-736" ktlint = "14.0.1" -kotlin = "2.2.21" +kotlin = "2.3.0" # make sure to sync manually with :plugins:keywords-generator module kotlinpoet = "2.2.0" diff --git a/plugins/expressions-converter/src/org/jetbrains/kotlinx/dataframe/ExplainerComponentRegistrar.kt b/plugins/expressions-converter/src/org/jetbrains/kotlinx/dataframe/ExplainerComponentRegistrar.kt index b74d6d50ed..521692e4b7 100644 --- a/plugins/expressions-converter/src/org/jetbrains/kotlinx/dataframe/ExplainerComponentRegistrar.kt +++ b/plugins/expressions-converter/src/org/jetbrains/kotlinx/dataframe/ExplainerComponentRegistrar.kt @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.compiler.plugin.ExperimentalCompilerApi import org.jetbrains.kotlin.config.CompilerConfiguration @OptIn(ExperimentalCompilerApi::class) -class ExplainerComponentRegistrar : CompilerPluginRegistrar() { +class ExplainerComponentRegistrar(override val pluginId: String) : CompilerPluginRegistrar() { override val supportsK2: Boolean get() = true diff --git a/plugins/expressions-converter/tests/org/jetbrains/kotlinx/dataframe/GenerateTests.kt b/plugins/expressions-converter/tests/org/jetbrains/kotlinx/dataframe/GenerateTests.kt index 33b06e67e4..7ea9384a13 100644 --- a/plugins/expressions-converter/tests/org/jetbrains/kotlinx/dataframe/GenerateTests.kt +++ b/plugins/expressions-converter/tests/org/jetbrains/kotlinx/dataframe/GenerateTests.kt @@ -1,6 +1,6 @@ package org.jetbrains.kotlinx.dataframe -import org.jetbrains.kotlin.generators.generateTestGroupSuiteWithJUnit5 +import org.jetbrains.kotlin.generators.dsl.junit5.generateTestGroupSuiteWithJUnit5 fun main() { generateTestGroupSuiteWithJUnit5 { diff --git a/plugins/public-api-modifier/src/org/jetbrains/kotlinx/dataframe/PublicApiModifierRegistrar.kt b/plugins/public-api-modifier/src/org/jetbrains/kotlinx/dataframe/PublicApiModifierRegistrar.kt index 5ae53b86f4..0154d7fdfe 100644 --- a/plugins/public-api-modifier/src/org/jetbrains/kotlinx/dataframe/PublicApiModifierRegistrar.kt +++ b/plugins/public-api-modifier/src/org/jetbrains/kotlinx/dataframe/PublicApiModifierRegistrar.kt @@ -17,7 +17,7 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirClassLikeSymbol import org.jetbrains.kotlin.name.FqName @OptIn(ExperimentalCompilerApi::class) -class PublicApiModifierRegistrar : CompilerPluginRegistrar() { +class PublicApiModifierRegistrar(override val pluginId: String) : CompilerPluginRegistrar() { override val supportsK2: Boolean = true override fun ExtensionStorage.registerExtensions(configuration: CompilerConfiguration) { From 283d7e1dbb4ba071eeebd6da3e3db5778444a2bf Mon Sep 17 00:00:00 2001 From: Jolan Rensen Date: Fri, 19 Dec 2025 16:24:09 +0100 Subject: [PATCH 2/3] parsing kotlin instants now by default --- build.gradle.kts | 3 - .../jetbrains/kotlinx/dataframe/api/parse.kt | 17 +- .../kotlinx/dataframe/impl/api/parse.kt | 2 +- .../kotlinx/dataframe/io/DelimCsvTsvTests.kt | 4 +- .../dataframe/jupyter/DataFrameJupyterTest.kt | 1 - docs/StardustDocs/topics/parse.md | 8 +- examples/notebooks/dev/netflix/netflix.ipynb | 2321 ++++++++++------- 7 files changed, 1340 insertions(+), 1016 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index ae3cf34397..7dfe6e62f0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -191,9 +191,6 @@ allprojects { } tasks.withType { compilerOptions { - // enables support for kotlin.time.Instant as kotlinx.datetime.Instant was deprecated; Issue #1350 - // Can be removed once kotlin.time.Instant is marked "stable". - optIn.add("kotlin.time.ExperimentalTime") // can be removed once kotlin.uuid.ExperimentalUuidApi is marked "stable". optIn.add("kotlin.uuid.ExperimentalUuidApi") } diff --git a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/parse.kt b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/parse.kt index c7e74f3b68..28bd0fc037 100644 --- a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/parse.kt +++ b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/parse.kt @@ -86,10 +86,13 @@ public interface GlobalParserOptions { public var parseExperimentalUuid: Boolean /** - * Whether to allow parsing to the experimental [kotlin.time.Instant] type. - * By default, this is false and instants are recognized as the deprecated [kotlinx.datetime.Instant] type (#1350). + * Whether to allow parsing to the [kotlin.time.Instant] type. + * This is marked "stable" from Kotlin 2.3.0+, so, by default this is `true`. * - * NOTE: Interacting with an [Instant][kotlin.time.Instant] in your code might require + * If false, instants are recognized as the deprecated [kotlinx.datetime.Instant] type (#1350). + * + * NOTE: If you are using an older Kotlin version, + * interacting with an [Instant][kotlin.time.Instant] in your code might require * `@`[OptIn][OptIn]`(`[ExperimentalTime][kotlin.time.ExperimentalTime]`::class)`. * In notebooks, add `-opt-in=kotlin.time.ExperimentalTime` to the compiler arguments. */ @@ -127,9 +130,11 @@ public interface GlobalParserOptions { * NOTE: Interacting with a [Uuid][Uuid] in your code might require * `@`[OptIn][OptIn]`(`[ExperimentalUuidApi][ExperimentalUuidApi]`::class)`. * In notebooks, add `-opt-in=kotlin.uuid.ExperimentalUuidApi` to the compiler arguments. - * @param parseExperimentalInstant whether to allow parsing to the experimental [kotlin.time.Instant] type. - * By default, this is false and instants are recognized as the deprecated [kotlinx.datetime.Instant] type (#1350). - * NOTE: Interacting with an [Instant][kotlin.time.Instant] in your code might require + * @param parseExperimentalInstant whether to allow parsing to the [kotlin.time.Instant] type. + * This is marked "stable" from Kotlin 2.3.0+, so, by default this is `true`. + * If false, instants are recognized as the deprecated [kotlinx.datetime.Instant] type (#1350). + * NOTE: If you are using an older Kotlin version, + * interacting with an [Instant][kotlin.time.Instant] in your code might require * `@`[OptIn][OptIn]`(`[ExperimentalTime][kotlin.time.ExperimentalTime]`::class)`. * In notebooks, add `-opt-in=kotlin.time.ExperimentalTime` to the compiler arguments. */ diff --git a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt index 2a74a7f84f..53e2a62947 100644 --- a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt +++ b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt @@ -186,7 +186,7 @@ internal object Parsers : GlobalParserOptions { useFastDoubleParser = true parseExperimentalUuid = false - parseExperimentalInstant = false + parseExperimentalInstant = true _locale = null nullStrings.addAll(listOf("null", "NULL", "NA", "N/A")) } diff --git a/dataframe-csv/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/DelimCsvTsvTests.kt b/dataframe-csv/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/DelimCsvTsvTests.kt index b81f707bfd..d5ebbf01b5 100644 --- a/dataframe-csv/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/DelimCsvTsvTests.kt +++ b/dataframe-csv/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/DelimCsvTsvTests.kt @@ -772,8 +772,8 @@ class DelimCsvTsvTests { // use DFs parsers by default for datetime-like columns val df1 = DataFrame.readCsvStr(csvContent) df1["with_timezone_offset"].let { - it.type() shouldBe typeOf() - it[0] shouldBe DeprecatedInstant.parse("2024-12-12T13:00:00+01:00") + it.type() shouldBe typeOf() + it[0] shouldBe StdlibInstant.parse("2024-12-12T13:00:00+01:00") } df1["without_timezone_offset"].let { it.type() shouldBe typeOf() diff --git a/dataframe-jupyter/src/test/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/DataFrameJupyterTest.kt b/dataframe-jupyter/src/test/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/DataFrameJupyterTest.kt index fbb3005703..a855eed04a 100644 --- a/dataframe-jupyter/src/test/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/DataFrameJupyterTest.kt +++ b/dataframe-jupyter/src/test/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/DataFrameJupyterTest.kt @@ -9,7 +9,6 @@ abstract class DataFrameJupyterTest : ReplProvider.forLibrariesTesting( libraries = setOf("dataframe", "kandy-geo", "kandy"), extraCompilerArguments = listOf( - "-Xopt-in=kotlin.time.ExperimentalTime", "-Xopt-in=kotlin.uuid.ExperimentalUuidApi", ), ), diff --git a/docs/StardustDocs/topics/parse.md b/docs/StardustDocs/topics/parse.md index d7cd258406..8b26e23005 100644 --- a/docs/StardustDocs/topics/parse.md +++ b/docs/StardustDocs/topics/parse.md @@ -39,8 +39,8 @@ df.parse { age and weight } `parse` tries to parse every `String`/`Char` column into one of the supported types in the following order: * `Int` * `Long` -* `Instant` (`kotlin.time`) (requires `parseExperimentalInstant = true`, available from Kotlin 2.1+.) -* `Instant` (`kotlinx.datetime` and `java.time`) +* `Instant` (`kotlin.time`) (requires `parseExperimentalInstant = true`, enabled by default in DataFrame 1.0.0-Beta5) +* `Instant` (`kotlinx.datetime` and `java.time`) (requires `parseExperimentalInstant = false`) * `LocalDateTime` (`kotlinx.datetime` and `java.time`) * `LocalDate` (`kotlinx.datetime` and `java.time`) * `Duration` (`kotlin.time` and `java.time`) @@ -84,9 +84,9 @@ Available parser options: * Enabled by global default * `parseExperimentalUuid: Boolean` is used to enable or disable parsing to the experimental [`kotlin.uuid.Uuid` class](https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.uuid/-uuid/). * Disabled by global default -* `parseExperimentalInstant: Boolean` is used to enable or disable parsing to the experimental +* `parseExperimentalInstant: Boolean` is used to enable or disable parsing to the [`kotlin.time.Instant` class](https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.time/-instant/), available from Kotlin 2.1+. Will parse to `kotlinx.datetime.Instant` if `false`. - * Disabled by global default + * Disabled by global default, enabled in DataFrame 1.0.0-Beta5. diff --git a/examples/notebooks/dev/netflix/netflix.ipynb b/examples/notebooks/dev/netflix/netflix.ipynb index 9c4383a211..8648fb041a 100644 --- a/examples/notebooks/dev/netflix/netflix.ipynb +++ b/examples/notebooks/dev/netflix/netflix.ipynb @@ -37,8 +37,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:57.125167Z", - "start_time": "2025-12-09T10:16:57.116994Z" + "end_time": "2025-12-19T15:13:49.813311108Z", + "start_time": "2025-12-19T15:13:49.613139080Z" } }, "cell_type": "code", @@ -56,8 +56,20 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:58.050463Z", - "start_time": "2025-12-09T10:16:57.128114Z" + "end_time": "2025-12-19T15:13:54.012590583Z", + "start_time": "2025-12-19T15:13:49.932997923Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_3_jupyter", + "Line_4_jupyter", + "Line_5_jupyter", + "Line_6_jupyter", + "Line_7_jupyter", + "Line_8_jupyter", + "Line_9_jupyter", + "Line_10_jupyter" + ] } }, "cell_type": "code", @@ -73,8 +85,16 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:58.291529Z", - "start_time": "2025-12-09T10:16:58.054444Z" + "end_time": "2025-12-19T15:13:55.858302253Z", + "start_time": "2025-12-19T15:13:54.398283150Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_11_jupyter", + "Line_12_jupyter", + "Line_13_jupyter", + "Line_14_jupyter" + ] } }, "cell_type": "code", @@ -102,8 +122,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:58.836616Z", - "start_time": "2025-12-09T10:16:58.294942Z" + "end_time": "2025-12-19T15:13:59.965203239Z", + "start_time": "2025-12-19T15:13:56.019714245Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_15_jupyter", + "Line_16_jupyter", + "Line_17_jupyter" + ] } }, "source": [ @@ -121,8 +148,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:58.866345Z", - "start_time": "2025-12-09T10:16:58.839924Z" + "end_time": "2025-12-19T15:14:01.000496793Z", + "start_time": "2025-12-19T15:14:00.170549466Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_18_jupyter" + ] } }, "source": [ @@ -158,8 +190,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:58.916017Z", - "start_time": "2025-12-09T10:16:58.890702Z" + "end_time": "2025-12-19T15:14:02.250613485Z", + "start_time": "2025-12-19T15:14:01.164211224Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_19_jupyter" + ] } }, "source": [ @@ -183,8 +220,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:59.002562Z", - "start_time": "2025-12-09T10:16:58.937199Z" + "end_time": "2025-12-19T15:14:04.115606466Z", + "start_time": "2025-12-19T15:14:02.400699293Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_20_jupyter" + ] } }, "source": "rawDf.head() // return the first five rows", @@ -371,7 +413,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410176"></table>\n", + " <table class="dataframe" id="df_436207616"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 12</p>\n", "\n", @@ -664,10 +706,10 @@ "{ name: "<span title=\"duration: String\">duration</span>", children: [], rightAlign: false, values: ["4 Seasons","93 min","78 min","80 min","123 min"] }, \n", "{ name: "<span title=\"listed_in: String\">listed_in</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"International TV Shows, TV Dramas, TV Sci-Fi &#38; Fantasy\">International TV Shows, TV Dramas, TV<span class=\"structural\">...</span></span>","Dramas, International Movies","Horror Movies, International Movies","<span class=\"formatted\" title=\"Action &#38; Adventure, Independent Movies, Sci-Fi &#38; Fantasy\">Action &#38; Adventure, Independent Movie<span class=\"structural\">...</span></span>","Dramas"] }, \n", "{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"In a future where the elite inhabit an island paradise far from the crowded slums, you get one chance to join the 3% saved from squalor.\">In a future where the elite inhabit a<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After a devastating earthquake hits Mexico City, trapped survivors from all walks of life wait to be rescued while trying desperately to stay alive.\">After a devastating earthquake hits M<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When an army recruit is found dead, his fellow soldiers are forced to confront a terrifying secret that&#39;s haunting their jungle island training camp.\">When an army recruit is found dead, h<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"In a postapocalyptic world, rag-doll robots hide in fear from dangerous machines out to exterminate them, until a brave newcomer joins the group.\">In a postapocalyptic world, rag-doll <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A brilliant group of students become card-counting experts with the intent of swindling millions out of Las Vegas casinos by playing blackjack.\">A brilliant group of students become <span class=\"structural\">...</span></span>"] }, \n", - "], id: -1023410176, rootId: -1023410176, totalRows: 5 } ) });\n", + "], id: 436207616, rootId: 436207616, totalRows: 5 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410176) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207616) });\n", "\n", "\n", " </script>\n", @@ -840,10 +882,10 @@ " \n", " \n", " \n", - "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescription
s1TV Show3%nullJoão Miguel, Bianca Comparato, Michel...BrazilAugust 14, 20202020TV-MA4 SeasonsInternational TV Shows, TV Dramas, TV...In a future where the elite inhabit a...
s2Movie7:19Jorge Michel GrauDemián Bichir, Héctor Bonilla, Oscar ...MexicoDecember 23, 20162016TV-MA93 minDramas, International MoviesAfter a devastating earthquake hits M...
s3Movie23:59Gilbert ChanTedd Chan, Stella Chung, Henley Hii, ...SingaporeDecember 20, 20182011R78 minHorror Movies, International MoviesWhen an army recruit is found dead, h...
s4Movie9Shane AckerElijah Wood, John C. Reilly, Jennifer...United StatesNovember 16, 20172009PG-1380 minAction & Adventure, Independent Movie...In a postapocalyptic world, rag-doll ...
s5Movie21Robert LuketicJim Sturgess, Kevin Spacey, Kate Bosw...United StatesJanuary 1, 20202008PG-13123 minDramasA brilliant group of students become ...
\n", + "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescription
s1TV Show3%nullJoão Miguel, Bianca Comparato, Michel...BrazilAugust 14, 20202020TV-MA4 SeasonsInternational TV Shows, TV Dramas, TV...In a future where the elite inhabit a...
s2Movie7:19Jorge Michel GrauDemián Bichir, Héctor Bonilla, Oscar ...MexicoDecember 23, 20162016TV-MA93 minDramas, International MoviesAfter a devastating earthquake hits M...
s3Movie23:59Gilbert ChanTedd Chan, Stella Chung, Henley Hii, ...SingaporeDecember 20, 20182011R78 minHorror Movies, International MoviesWhen an army recruit is found dead, h...
s4Movie9Shane AckerElijah Wood, John C. Reilly, Jennifer...United StatesNovember 16, 20172009PG-1380 minAction & Adventure, Independent Movie...In a postapocalyptic world, rag-doll ...
s5Movie21Robert LuketicJim Sturgess, Kevin Spacey, Kate Bosw...United StatesJanuary 1, 20202008PG-13123 minDramasA brilliant group of students become ...
\n", " \n", " \n", " " ], @@ -860,8 +902,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:59.168863Z", - "start_time": "2025-12-09T10:16:59.030063Z" + "end_time": "2025-12-19T15:14:06.327420597Z", + "start_time": "2025-12-19T15:14:04.849876035Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_22_jupyter" + ] } }, "source": [ @@ -872,7 +919,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -1569,8 +1616,15 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2025-12-09T10:16:59.597013Z", - "start_time": "2025-12-09T10:16:59.308251Z" + "end_time": "2025-12-19T15:14:09.847760095Z", + "start_time": "2025-12-19T15:14:06.840425264Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_24_jupyter", + "Line_25_jupyter", + "Line_26_jupyter" + ] } }, "source": [ @@ -1762,7 +1816,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410168"></table>\n", + " <table class="dataframe" id="df_436207624"></table>\n", "\n", "<p class="dataframe_description">... showing only top 20 of 7777 rows</p><p class="dataframe_description">DataFrame: rowsCount = 7777, columnsCount = 12</p>\n", "\n", @@ -2055,10 +2109,10 @@ "{ name: "<span title=\"duration: String\">duration</span>", children: [], rightAlign: false, values: ["81 min","1 Season","104 min","29 min","84 min","103 min","75 min","95 min","96 min","94 min","94 min","93 min","96 min","94 min","94 min","93 min","95 min","93 min","76 min","84 min"] }, \n", "{ name: "<span title=\"listed_in: String\">listed_in</span>", children: [], rightAlign: false, values: ["Dramas, Independent Movies, Thrillers","Stand-Up Comedy &#38; Talk Shows","Dramas, International Movies","Horror Movies","Cult Movies, Horror Movies","Dramas, International Movies","<span class=\"formatted\" title=\"Children &#38; Family Movies, Dramas, Faith &#38; Spirituality\">Children &#38; Family Movies, Dramas, Fai<span class=\"structural\">...</span></span>","Dramas","Dramas","Dramas","Dramas","Dramas, Sports Movies","Dramas","Dramas","Dramas","Dramas, Sports Movies","Dramas","Dramas, Thrillers","Documentaries","Comedies"] }, \n", "{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"While covering a story in New York City, a Seattle-based reporter uncovers a link between two missing women that changes her article entirely.\">While covering a story in New York Ci<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"In each episode, four celebrities join host Jon Favreau for dinner and share revealing stories about both show business and their personal lives.\">In each episode, four celebrities joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When he causes a car accident that leaves a young woman with amnesia, a man finds himself telling incredible lies to make her and her family happy.\">When he causes a car accident that le<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After committing suicide, a washed-up rocker returns from the grave to torment the five people who betrayed him in life.\">After committing suicide, a washed-up<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This collection cherry-picks trailers, forgotten scenes and poster art from 47 gory oldies, including Bay of Blood and The Blood Spattered Bride.\">This collection cherry-picks trailers<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"While making a film about the incursion of Christopher Columbus in the New World, a director finds the Bolivian locals protesting modern exploitation.\">While making a film about the incursi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"With his gift of dream interpretation and his brilliantly colored coat, Joseph inspires jealousy in his brothers in this animated Bible story.\">With his gift of dream interpretation<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After reckless teens kill an Amish child, a prosecutor attempts to bring the youths to justice despite the condemnation he faces from the community.\">After reckless teens kill an Amish ch<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After their child was abducted and murdered, John and Reve Walsh fought to raise national awareness of the problem of missing children.\">After their child was abducted and mu<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This drama based on real-life events tells the story of George McKenna, the tough, determined new principal of a notorious Los Angeles high school.\">This drama based on real-life events <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A lawyer&#39;s husband is having an affair. When his mistress is found dead, he becomes the prime suspect &#8211; and his wife must take charge of his defense.\">A lawyer&#39;s husband is having an affai<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When high school football coach Charlie Wedemeyer is diagnosed with Lou Gehrig&#39;s disease, he perseveres in leading his team despite becoming disabled.\">When high school football coach Charl<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When their college-age daughter suddenly begins acting erratically and is diagnosed with schizophrenia, a desperate couple seeks treatment for her.\">When their college-age daughter sudde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After contracting HIV from a tainted blood treatment, teenaged hemophiliac Ryan White is forced to fight for his right to attend public school.\">After contracting HIV from a tainted <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Twelve-year-old Calvin manages to join the navy and serves in the battle of Guadalcanal. But when his age is revealed, the boy is sent to the brig.\">Twelve-year-old Calvin manages to joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This drama tells the tale of Ricky Bell, a pro running back with the Tampa Bay Buccaneers who died of a muscle disease in the prime of his career.\">This drama tells the tale of Ricky Be<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Laurie and Joseph are doctors who interview sexually abused children. With a lot of energy they track down a pedophile who has abused many toddlers.\">Laurie and Joseph are doctors who int<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A beauty pageant winner is stalked by a serial killer who kidnaps her sister and torments her family in this thriller based on a shocking true story.\">A beauty pageant winner is stalked by<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Whoopi Goldberg narrates Elmo creator Kevin Clash&#39;s remarkable journey from a working-class Baltimore neighborhood to Jim Henson&#39;s &#34;Sesame Street.&#34;\">Whoopi Goldberg narrates Elmo creator<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Will Ferrell stars as a Spanish-speaking cowboy in this comedy about a Mexican clan trying to rescue their ranch from greedy creditors.\">Will Ferrell stars as a Spanish-speak<span class=\"structural\">...</span></span>"] }, \n", - "], id: -1023410168, rootId: -1023410168, totalRows: 7777 } ) });\n", + "], id: 436207624, rootId: 436207624, totalRows: 7777 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410168) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207624) });\n", "\n", "\n", " </script>\n", @@ -2231,10 +2285,10 @@ " \n", " \n", " \n", - "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescription
s7114MovieTo and From New YorkSorin Dan MihalcescuBarbara King, Shaana Diya, John Krisi...United States2008-01-012006TV-MA81 minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...
s1766TV ShowDinner for FivenullnullUnited States2008-02-042007TV-MA1 SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...
s3249MovieJust Another Love StoryOle BornedalAnders W. Berthelsen, Rebecka Hemse, ...Denmark2009-05-052007TV-MA104 minDramas, International MoviesWhen he causes a car accident that le...
s5766MovieSplatterJoe DanteCorey Feldman, Tony Todd, Tara Leigh,...United States2009-11-182009TV-MA29 minHorror MoviesAfter committing suicide, a washed-up...
s3841MovieMad Ron's Prevues from HellJim MonacoNick Pawlow, Jordu Schell, Jay Kushwa...United States2010-11-011987NR84 minCult Movies, Horror MoviesThis collection cherry-picks trailers...
s2042MovieEven the RainIcíar BollaínLuis Tosar, Gael García Bernal, Juan ...Spain, Mexico, France2011-05-172010TV-MA103 minDramas, International MoviesWhile making a film about the incursi...
s3222MovieJoseph: King of DreamsRob LaDuca, Robert C. RamirezBen Affleck, Mark Hamill, Richard Her...United States2011-09-272000TV-PG75 minChildren & Family Movies, Dramas, Fai...With his gift of dream interpretation...
s233MovieA Stoning in Fulham CountyLarry ElikannKen Olin, Jill Eikenberry, Maureen Mu...United States2011-10-011988TV-1495 minDramasAfter reckless teens kill an Amish ch...
s309MovieAdam: His Song ContinuesRobert MarkowitzDaniel J. Travanti, JoBeth Williams, ...United States2011-10-011986TV-MA96 minDramasAfter their child was abducted and mu...
s2623MovieHard LessonsEric LaneuvilleDenzel Washington, Lynn Whitfield, Ri...United States2011-10-011986TV-1494 minDramasThis drama based on real-life events ...
s2963MovieIn Defense of a Married ManJoel OlianskyJudith Light, Michael Ontkean, Jerry ...United States2011-10-011990TV-1494 minDramasA lawyer's husband is having an affai...
s5042MovieQuiet Victory: The Charlie Wedemeyer ...Roy Campanella IIPam Dawber, Michael Nouri, Bess Meyer...United States2011-10-011988TV-PG93 minDramas, Sports MoviesWhen high school football coach Charl...
s5833MovieStrange VoicesArthur Allan SeidelmanNancy McKeon, Valerie Harper, Stephen...United States2011-10-011987TV-PG96 minDramasWhen their college-age daughter sudde...
s6846MovieThe Ryan White StoryJohn HerzfeldJudith Light, Lukas Haas, Michael Bow...United States2011-10-011989TV-PG94 minDramasAfter contracting HIV from a tainted ...
s7150MovieToo Young the HeroBuzz KulikRicky Schroder, Jon DeVries, Debra Mo...United States2011-10-011988TV-MA94 minDramasTwelve-year-old Calvin manages to joi...
s7231MovieTriumph of the HeartRichard MichaelsMario Van Peebles, Susan Ruttan, Lane...United States2011-10-011991TV-PG93 minDramas, Sports MoviesThis drama tells the tale of Ricky Be...
s7363MovieUnspeakable ActsLinda OttoJill Clayburgh, Brad Davis, Sam BehrensUnited States2011-10-011990TV-1495 minDramasLaurie and Joseph are doctors who int...
s7415MovieVictim of BeautyRoger YoungWilliam Devane, Jeri Ryan, Michele Ab...United States2011-10-011991TV-1493 minDramas, ThrillersA beauty pageant winner is stalked by...
s819MovieBeing Elmo: A Puppeteer's JourneyConstance MarksKevin Clash, Whoopi GoldbergUnited States2012-02-212011PG76 minDocumentariesWhoopi Goldberg narrates Elmo creator...
s1230MovieCasa de mi PadreMatt PiedmontWill Ferrell, Gael García Bernal, Die...United States, Mexico2012-11-142012R84 minComediesWill Ferrell stars as a Spanish-speak...
\n", + "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescription
s7114MovieTo and From New YorkSorin Dan MihalcescuBarbara King, Shaana Diya, John Krisi...United States2008-01-012006TV-MA81 minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...
s1766TV ShowDinner for FivenullnullUnited States2008-02-042007TV-MA1 SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...
s3249MovieJust Another Love StoryOle BornedalAnders W. Berthelsen, Rebecka Hemse, ...Denmark2009-05-052007TV-MA104 minDramas, International MoviesWhen he causes a car accident that le...
s5766MovieSplatterJoe DanteCorey Feldman, Tony Todd, Tara Leigh,...United States2009-11-182009TV-MA29 minHorror MoviesAfter committing suicide, a washed-up...
s3841MovieMad Ron's Prevues from HellJim MonacoNick Pawlow, Jordu Schell, Jay Kushwa...United States2010-11-011987NR84 minCult Movies, Horror MoviesThis collection cherry-picks trailers...
s2042MovieEven the RainIcíar BollaínLuis Tosar, Gael García Bernal, Juan ...Spain, Mexico, France2011-05-172010TV-MA103 minDramas, International MoviesWhile making a film about the incursi...
s3222MovieJoseph: King of DreamsRob LaDuca, Robert C. RamirezBen Affleck, Mark Hamill, Richard Her...United States2011-09-272000TV-PG75 minChildren & Family Movies, Dramas, Fai...With his gift of dream interpretation...
s233MovieA Stoning in Fulham CountyLarry ElikannKen Olin, Jill Eikenberry, Maureen Mu...United States2011-10-011988TV-1495 minDramasAfter reckless teens kill an Amish ch...
s309MovieAdam: His Song ContinuesRobert MarkowitzDaniel J. Travanti, JoBeth Williams, ...United States2011-10-011986TV-MA96 minDramasAfter their child was abducted and mu...
s2623MovieHard LessonsEric LaneuvilleDenzel Washington, Lynn Whitfield, Ri...United States2011-10-011986TV-1494 minDramasThis drama based on real-life events ...
s2963MovieIn Defense of a Married ManJoel OlianskyJudith Light, Michael Ontkean, Jerry ...United States2011-10-011990TV-1494 minDramasA lawyer's husband is having an affai...
s5042MovieQuiet Victory: The Charlie Wedemeyer ...Roy Campanella IIPam Dawber, Michael Nouri, Bess Meyer...United States2011-10-011988TV-PG93 minDramas, Sports MoviesWhen high school football coach Charl...
s5833MovieStrange VoicesArthur Allan SeidelmanNancy McKeon, Valerie Harper, Stephen...United States2011-10-011987TV-PG96 minDramasWhen their college-age daughter sudde...
s6846MovieThe Ryan White StoryJohn HerzfeldJudith Light, Lukas Haas, Michael Bow...United States2011-10-011989TV-PG94 minDramasAfter contracting HIV from a tainted ...
s7150MovieToo Young the HeroBuzz KulikRicky Schroder, Jon DeVries, Debra Mo...United States2011-10-011988TV-MA94 minDramasTwelve-year-old Calvin manages to joi...
s7231MovieTriumph of the HeartRichard MichaelsMario Van Peebles, Susan Ruttan, Lane...United States2011-10-011991TV-PG93 minDramas, Sports MoviesThis drama tells the tale of Ricky Be...
s7363MovieUnspeakable ActsLinda OttoJill Clayburgh, Brad Davis, Sam BehrensUnited States2011-10-011990TV-1495 minDramasLaurie and Joseph are doctors who int...
s7415MovieVictim of BeautyRoger YoungWilliam Devane, Jeri Ryan, Michele Ab...United States2011-10-011991TV-1493 minDramas, ThrillersA beauty pageant winner is stalked by...
s819MovieBeing Elmo: A Puppeteer's JourneyConstance MarksKevin Clash, Whoopi GoldbergUnited States2012-02-212011PG76 minDocumentariesWhoopi Goldberg narrates Elmo creator...
s1230MovieCasa de mi PadreMatt PiedmontWill Ferrell, Gael García Bernal, Die...United States, Mexico2012-11-142012R84 minComediesWill Ferrell stars as a Spanish-speak...
\n", " \n", " \n", " " ], @@ -2255,8 +2309,13 @@ ], "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:16:59.676876Z", - "start_time": "2025-12-09T10:16:59.655844Z" + "end_time": "2025-12-19T15:14:11.372264597Z", + "start_time": "2025-12-19T15:14:10.546647667Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_28_jupyter" + ] } }, "outputs": [ @@ -2289,8 +2348,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:00.088587Z", - "start_time": "2025-12-09T10:16:59.721241Z" + "end_time": "2025-12-19T15:14:13.905409218Z", + "start_time": "2025-12-19T15:14:11.737896539Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_29_jupyter" + ] } }, "source": [ @@ -2322,7 +2386,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="dlNJI9"></div>\n", + " <div id="bjxdHR"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -2347,7 +2411,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("dlNJI9");\n", + " const containerDiv = document.getElementById("bjxdHR");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -2444,7 +2508,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -2617,7 +2681,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -2629,7 +2693,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -2807,10 +2871,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -2905,8 +2969,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:00.305159Z", - "start_time": "2025-12-09T10:17:00.116046Z" + "end_time": "2025-12-19T15:14:16.404907410Z", + "start_time": "2025-12-19T15:14:13.975672453Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_30_jupyter", + "Line_31_jupyter", + "Line_32_jupyter" + ] } }, "source": [ @@ -3102,7 +3173,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410164"></table>\n", + " <table class="dataframe" id="df_436207628"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 14, columnsCount = 3</p>\n", "\n", @@ -3386,10 +3457,10 @@ "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"date_added: Int\">date_added</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2008</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2009</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2010</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2011</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2012</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2013</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2014</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2015</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2016</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2017</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2018</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2019</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2020</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2021</span></span>"] }, \n", "{ name: "<span title=\"tvshows: Int\">tvshows</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">185</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">361</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">430</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">656</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">697</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29</span></span>"] }, \n", "{ name: "<span title=\"movies: Int\">movies</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">13</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">19</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">58</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">258</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">864</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1255</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1497</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1312</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">88</span></span>"] }, \n", - "], id: -1023410164, rootId: -1023410164, totalRows: 14 } ) });\n", + "], id: 436207628, rootId: 436207628, totalRows: 14 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410164) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207628) });\n", "\n", "\n", " </script>\n", @@ -3562,10 +3633,10 @@ " \n", " \n", " \n", - "
date_addedtvshowsmovies
200811
200902
201001
2011013
201203
201356
2014619
20153058
2016185258
2017361864
20184301255
20196561497
20206971312
20212988
\n", + "
date_addedtvshowsmovies
200811
200902
201001
2011013
201203
201356
2014619
20153058
2016185258
2017361864
20184301255
20196561497
20206971312
20212988
\n", " \n", " \n", " " ], @@ -3587,8 +3658,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:00.445178Z", - "start_time": "2025-12-09T10:17:00.339523Z" + "end_time": "2025-12-19T15:14:18.769707299Z", + "start_time": "2025-12-19T15:14:16.986482387Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_34_jupyter", + "Line_35_jupyter", + "Line_36_jupyter" + ] } }, "source": [ @@ -3604,7 +3682,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -4268,8 +4346,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:00.637958Z", - "start_time": "2025-12-09T10:17:00.534217Z" + "end_time": "2025-12-19T15:14:21.285531865Z", + "start_time": "2025-12-19T15:14:19.355883769Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_38_jupyter" + ] } }, "source": [ @@ -4280,7 +4363,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -5329,8 +5412,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:00.982231Z", - "start_time": "2025-12-09T10:17:00.928493Z" + "end_time": "2025-12-19T15:14:24.403381094Z", + "start_time": "2025-12-19T15:14:22.583202930Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_40_jupyter" + ] } }, "source": [ @@ -5520,7 +5608,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410048"></table>\n", + " <table class="dataframe" id="df_436207744"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 14, columnsCount = 2</p>\n", "\n", @@ -5805,10 +5893,10 @@ "{ name: "<span title=\"Movie: Int\">Movie</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">13</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">19</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">58</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">258</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">864</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1255</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1497</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1312</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">88</span></span>"] }, \n", "{ name: "<span title=\"TV Show: Int?\">TV Show</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">185</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">361</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">430</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">656</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">697</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29</span></span>"] }, \n", "{ name: "<span title=\"type: DataRow<*>\">type</span>", children: [1, 2], rightAlign: false, values: ["<span class=\"formatted\" title=\"Movie: 1\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 2\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">2</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 13\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">13</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 3\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">3</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 6\nTV Show: 5\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">6</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">5</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 19\nTV Show: 6\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">19</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">6</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 58\nTV Show: 30\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">58</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">30</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 258\nTV Show: 185\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">258</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">185</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 864\nTV Show: 361\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">864</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">361</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1255\nTV Show: 430\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1255</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">430</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1497\nTV Show: 656\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1497</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">656</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1312\nTV Show: 697\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1312</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">697</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 88\nTV Show: 29\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">88</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">29</span><span class=\"structural\"> }</span></span>"] }, \n", - "], id: -1023410048, rootId: -1023410048, totalRows: 14 } ) });\n", + "], id: 436207744, rootId: 436207744, totalRows: 14 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410048) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207744) });\n", "\n", "\n", " </script>\n", @@ -5981,10 +6069,10 @@ " \n", " \n", " \n", - "
date_addedtype
MovieTV Show
200811
20092null
20101null
201113null
20123null
201365
2014196
20155830
2016258185
2017864361
20181255430
20191497656
20201312697
20218829
\n", + "
date_addedtype
MovieTV Show
200811
20092null
20101null
201113null
20123null
201365
2014196
20155830
2016258185
2017864361
20181255430
20191497656
20201312697
20218829
\n", " \n", " \n", " " ], @@ -6006,8 +6094,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:01.040433Z", - "start_time": "2025-12-09T10:17:00.995142Z" + "end_time": "2025-12-19T15:14:26.440883913Z", + "start_time": "2025-12-19T15:14:24.832779437Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_42_jupyter" + ] } }, "source": [ @@ -6018,7 +6111,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -6687,8 +6780,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:01.286297Z", - "start_time": "2025-12-09T10:17:01.172230Z" + "end_time": "2025-12-19T15:14:28.755952600Z", + "start_time": "2025-12-19T15:14:26.793709739Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_44_jupyter", + "Line_45_jupyter", + "Line_46_jupyter" + ] } }, "source": [ @@ -6879,7 +6979,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410040"></table>\n", + " <table class="dataframe" id="df_436207752"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 14, columnsCount = 2</p>\n", "\n", @@ -7164,10 +7264,10 @@ "{ name: "<span title=\"Movie: Int\">Movie</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">13</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">19</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">58</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">258</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">864</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1255</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1497</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1312</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">88</span></span>"] }, \n", "{ name: "<span title=\"TV Show: Int\">TV Show</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">185</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">361</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">430</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">656</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">697</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29</span></span>"] }, \n", "{ name: "<span title=\"type: DataRow<*>\">type</span>", children: [1, 2], rightAlign: false, values: ["<span class=\"formatted\" title=\"Movie: 1\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 2\nTV Show: 0\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">2</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">0</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1\nTV Show: 0\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">0</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 13\nTV Show: 0\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">13</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">0</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 3\nTV Show: 0\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">3</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">0</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 6\nTV Show: 5\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">6</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">5</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 19\nTV Show: 6\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">19</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">6</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 58\nTV Show: 30\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">58</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">30</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 258\nTV Show: 185\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">258</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">185</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 864\nTV Show: 361\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">864</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">361</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1255\nTV Show: 430\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1255</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">430</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1497\nTV Show: 656\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1497</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">656</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1312\nTV Show: 697\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1312</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">697</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 88\nTV Show: 29\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">88</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">29</span><span class=\"structural\"> }</span></span>"] }, \n", - "], id: -1023410040, rootId: -1023410040, totalRows: 14 } ) });\n", + "], id: 436207752, rootId: 436207752, totalRows: 14 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410040) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207752) });\n", "\n", "\n", " </script>\n", @@ -7340,10 +7440,10 @@ " \n", " \n", " \n", - "
date_addedtype
MovieTV Show
200811
200920
201010
2011130
201230
201365
2014196
20155830
2016258185
2017864361
20181255430
20191497656
20201312697
20218829
\n", + "
date_addedtype
MovieTV Show
200811
200920
201010
2011130
201230
201365
2014196
20155830
2016258185
2017864361
20181255430
20191497656
20201312697
20218829
\n", " \n", " \n", " " ], @@ -7365,8 +7465,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:01.498686Z", - "start_time": "2025-12-09T10:17:01.342857Z" + "end_time": "2025-12-19T15:14:31.524271496Z", + "start_time": "2025-12-19T15:14:29.743000570Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_48_jupyter" + ] } }, "source": [ @@ -7413,7 +7518,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="31yt72"></div>\n", + " <div id="IRi2pr"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -7438,7 +7543,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("31yt72");\n", + " const containerDiv = document.getElementById("IRi2pr");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -7575,7 +7680,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -7910,7 +8015,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -7936,13 +8041,13 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -7971,10 +8076,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -8155,8 +8260,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:01.615762Z", - "start_time": "2025-12-09T10:17:01.568131Z" + "end_time": "2025-12-19T15:14:32.532853997Z", + "start_time": "2025-12-19T15:14:31.547781737Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_49_jupyter" + ] } }, "source": [ @@ -8348,7 +8458,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410036"></table>\n", + " <table class="dataframe" id="df_436207756"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 14, columnsCount = 2</p>\n", "\n", @@ -8633,10 +8743,10 @@ "{ name: "<span title=\"Movie: Int\">Movie</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">4</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">17</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">20</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">26</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">45</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">103</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">361</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1225</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3977</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5289</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5377</span></span>"] }, \n", "{ name: "<span title=\"TV Show: Int\">TV Show</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">12</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">42</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">227</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">588</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1018</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1674</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2371</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2400</span></span>"] }, \n", "{ name: "<span title=\"type: DataRow<*>\">type</span>", children: [1, 2], rightAlign: false, values: ["<span class=\"formatted\" title=\"Movie: 1\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 3\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">3</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 4\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">4</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 17\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">17</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 20\nTV Show: 1\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">20</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 26\nTV Show: 6\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">26</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">6</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 45\nTV Show: 12\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">45</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">12</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 103\nTV Show: 42\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">103</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">42</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 361\nTV Show: 227\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">361</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">227</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 1225\nTV Show: 588\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">1225</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">588</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 2480\nTV Show: 1018\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">2480</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1018</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 3977\nTV Show: 1674\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">3977</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">1674</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 5289\nTV Show: 2371\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">5289</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">2371</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"Movie: 5377\nTV Show: 2400\"><span class=\"structural\">{ </span><span class=\"structural\">Movie: </span><span class=\"numbers\">5377</span><span class=\"structural\">, </span><span class=\"structural\">TV Show: </span><span class=\"numbers\">2400</span><span class=\"structural\"> }</span></span>"] }, \n", - "], id: -1023410036, rootId: -1023410036, totalRows: 14 } ) });\n", + "], id: 436207756, rootId: 436207756, totalRows: 14 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410036) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207756) });\n", "\n", "\n", " </script>\n", @@ -8809,10 +8919,10 @@ " \n", " \n", " \n", - "
date_addedtype
MovieTV Show
200811
200931
201041
2011171
2012201
2013266
20144512
201510342
2016361227
20171225588
201824801018
201939771674
202052892371
202153772400
\n", + "
date_addedtype
MovieTV Show
200811
200931
201041
2011171
2012201
2013266
20144512
201510342
2016361227
20171225588
201824801018
201939771674
202052892371
202153772400
\n", " \n", " \n", " " ], @@ -8829,8 +8939,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:01.799876Z", - "start_time": "2025-12-09T10:17:01.704110Z" + "end_time": "2025-12-19T15:14:34.426771087Z", + "start_time": "2025-12-19T15:14:33.271678976Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_51_jupyter" + ] } }, "source": [ @@ -8878,7 +8993,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="CjrUAx"></div>\n", + " <div id="GJkqv2"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -8903,7 +9018,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("CjrUAx");\n", + " const containerDiv = document.getElementById("GJkqv2");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -9040,7 +9155,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -9403,7 +9518,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -9429,13 +9544,13 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -9464,10 +9579,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -9654,8 +9769,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:01.968297Z", - "start_time": "2025-12-09T10:17:01.957920Z" + "end_time": "2025-12-19T15:14:35.262496056Z", + "start_time": "2025-12-19T15:14:34.986901608Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_52_jupyter" + ] } }, "source": [ @@ -9668,8 +9788,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:02.189094Z", - "start_time": "2025-12-09T10:17:02.059019Z" + "end_time": "2025-12-19T15:14:36.261790842Z", + "start_time": "2025-12-19T15:14:35.272428800Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_53_jupyter", + "Line_54_jupyter", + "Line_55_jupyter" + ] } }, "source": [ @@ -9687,8 +9814,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:02.565755Z", - "start_time": "2025-12-09T10:17:02.235218Z" + "end_time": "2025-12-19T15:14:39.297552085Z", + "start_time": "2025-12-19T15:14:36.716505691Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_56_jupyter" + ] } }, "source": [ @@ -9741,7 +9873,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="ReWSJ3"></div>\n", + " <div id="cLd5jL"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -9766,7 +9898,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("ReWSJ3");\n", + " const containerDiv = document.getElementById("cLd5jL");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -10014,7 +10146,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10161,117 +10293,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#p29rgr6 .plot-title {\n", + "#pdFpInU .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#p29rgr6 .plot-subtitle {\n", + "#pdFpInU .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p29rgr6 .plot-caption {\n", + "#pdFpInU .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p29rgr6 .hyperlink-element {\n", + "#pdFpInU .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#p29rgr6 .legend-title {\n", + "#pdFpInU .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p29rgr6 .legend-item {\n", + "#pdFpInU .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p29rgr6 .axis-title-x {\n", + "#pdFpInU .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p29rgr6 .axis-text-x {\n", + "#pdFpInU .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#devUp2v .axis-tooltip-text-x {\n", + "#djgYgdN .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p29rgr6 .axis-title-y {\n", + "#pdFpInU .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p29rgr6 .axis-text-y {\n", + "#pdFpInU .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#devUp2v .axis-tooltip-text-y {\n", + "#djgYgdN .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p29rgr6 .facet-strip-text-x {\n", + "#pdFpInU .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p29rgr6 .facet-strip-text-y {\n", + "#pdFpInU .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#devUp2v .tooltip-text {\n", + "#djgYgdN .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#devUp2v .tooltip-title {\n", + "#djgYgdN .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#devUp2v .tooltip-label {\n", + "#djgYgdN .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -10280,7 +10412,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10314,7 +10446,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10392,13 +10524,13 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10511,7 +10643,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10526,117 +10658,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#pqiPXdi .plot-title {\n", + "#pVmVPCD .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#pqiPXdi .plot-subtitle {\n", + "#pVmVPCD .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pqiPXdi .plot-caption {\n", + "#pVmVPCD .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pqiPXdi .hyperlink-element {\n", + "#pVmVPCD .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#pqiPXdi .legend-title {\n", + "#pVmVPCD .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pqiPXdi .legend-item {\n", + "#pVmVPCD .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pqiPXdi .axis-title-x {\n", + "#pVmVPCD .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pqiPXdi .axis-text-x {\n", + "#pVmVPCD .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dKOKGXR .axis-tooltip-text-x {\n", + "#dgZtXkq .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pqiPXdi .axis-title-y {\n", + "#pVmVPCD .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pqiPXdi .axis-text-y {\n", + "#pVmVPCD .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dKOKGXR .axis-tooltip-text-y {\n", + "#dgZtXkq .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pqiPXdi .facet-strip-text-x {\n", + "#pVmVPCD .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pqiPXdi .facet-strip-text-y {\n", + "#pVmVPCD .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dKOKGXR .tooltip-text {\n", + "#dgZtXkq .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dKOKGXR .tooltip-title {\n", + "#dgZtXkq .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dKOKGXR .tooltip-label {\n", + "#dgZtXkq .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -10645,7 +10777,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10675,7 +10807,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10773,13 +10905,13 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -10927,11 +11059,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -11516,8 +11648,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:02.698525Z", - "start_time": "2025-12-09T10:17:02.610140Z" + "end_time": "2025-12-19T15:14:41.165564132Z", + "start_time": "2025-12-19T15:14:39.494275622Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_57_jupyter" + ] } }, "source": [ @@ -11547,7 +11684,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="rGK0iN"></div>\n", + " <div id="nlw566"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -11572,7 +11709,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("rGK0iN");\n", + " const containerDiv = document.getElementById("nlw566");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -11674,7 +11811,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -11853,7 +11990,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -11905,7 +12042,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -12116,10 +12253,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -12285,8 +12422,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:02.887031Z", - "start_time": "2025-12-09T10:17:02.766609Z" + "end_time": "2025-12-19T15:14:42.770678867Z", + "start_time": "2025-12-19T15:14:41.547430379Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_58_jupyter", + "Line_59_jupyter", + "Line_60_jupyter" + ] } }, "source": [ @@ -12482,7 +12626,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410032"></table>\n", + " <table class="dataframe" id="df_436207760"></table>\n", "\n", "<p class="dataframe_description">... showing only top 20 of 4940 rows</p><p class="dataframe_description">DataFrame: rowsCount = 4940, columnsCount = 13</p>\n", "\n", @@ -12776,10 +12920,10 @@ "{ name: "<span title=\"listed_in: String\">listed_in</span>", children: [], rightAlign: false, values: ["Dramas, Independent Movies, Thrillers","Stand-Up Comedy &#38; Talk Shows","Dramas, International Movies","Cult Movies, Horror Movies","Dramas, International Movies","<span class=\"formatted\" title=\"Children &#38; Family Movies, Dramas, Faith &#38; Spirituality\">Children &#38; Family Movies, Dramas, Fai<span class=\"structural\">...</span></span>","Dramas","Dramas","Dramas","Dramas","Dramas, Sports Movies","Dramas","Dramas","Dramas","Dramas, Sports Movies","Dramas","Dramas, Thrillers","Documentaries","Children &#38; Family Movies, Comedies","<span class=\"formatted\" title=\"TV Dramas, TV Mysteries, TV Sci-Fi &#38; Fantasy\">TV Dramas, TV Mysteries, TV Sci-Fi &#38; <span class=\"structural\">...</span></span>"] }, \n", "{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"While covering a story in New York City, a Seattle-based reporter uncovers a link between two missing women that changes her article entirely.\">While covering a story in New York Ci<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"In each episode, four celebrities join host Jon Favreau for dinner and share revealing stories about both show business and their personal lives.\">In each episode, four celebrities joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When he causes a car accident that leaves a young woman with amnesia, a man finds himself telling incredible lies to make her and her family happy.\">When he causes a car accident that le<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This collection cherry-picks trailers, forgotten scenes and poster art from 47 gory oldies, including Bay of Blood and The Blood Spattered Bride.\">This collection cherry-picks trailers<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"While making a film about the incursion of Christopher Columbus in the New World, a director finds the Bolivian locals protesting modern exploitation.\">While making a film about the incursi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"With his gift of dream interpretation and his brilliantly colored coat, Joseph inspires jealousy in his brothers in this animated Bible story.\">With his gift of dream interpretation<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After reckless teens kill an Amish child, a prosecutor attempts to bring the youths to justice despite the condemnation he faces from the community.\">After reckless teens kill an Amish ch<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After their child was abducted and murdered, John and Reve Walsh fought to raise national awareness of the problem of missing children.\">After their child was abducted and mu<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This drama based on real-life events tells the story of George McKenna, the tough, determined new principal of a notorious Los Angeles high school.\">This drama based on real-life events <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A lawyer&#39;s husband is having an affair. When his mistress is found dead, he becomes the prime suspect &#8211; and his wife must take charge of his defense.\">A lawyer&#39;s husband is having an affai<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When high school football coach Charlie Wedemeyer is diagnosed with Lou Gehrig&#39;s disease, he perseveres in leading his team despite becoming disabled.\">When high school football coach Charl<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When their college-age daughter suddenly begins acting erratically and is diagnosed with schizophrenia, a desperate couple seeks treatment for her.\">When their college-age daughter sudde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After contracting HIV from a tainted blood treatment, teenaged hemophiliac Ryan White is forced to fight for his right to attend public school.\">After contracting HIV from a tainted <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Twelve-year-old Calvin manages to join the navy and serves in the battle of Guadalcanal. But when his age is revealed, the boy is sent to the brig.\">Twelve-year-old Calvin manages to joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This drama tells the tale of Ricky Bell, a pro running back with the Tampa Bay Buccaneers who died of a muscle disease in the prime of his career.\">This drama tells the tale of Ricky Be<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Laurie and Joseph are doctors who interview sexually abused children. With a lot of energy they track down a pedophile who has abused many toddlers.\">Laurie and Joseph are doctors who int<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A beauty pageant winner is stalked by a serial killer who kidnaps her sister and torments her family in this thriller based on a shocking true story.\">A beauty pageant winner is stalked by<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Whoopi Goldberg narrates Elmo creator Kevin Clash&#39;s remarkable journey from a working-class Baltimore neighborhood to Jim Henson&#39;s &#34;Sesame Street.&#34;\">Whoopi Goldberg narrates Elmo creator<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"As preparations for the Winter Feast build, Po is caught between his obligations as the Dragon Warrior and his family holiday traditions.\">As preparations for the Winter Feast <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"4400 people who vanished over the course of five decades suddenly reappear. None have aged, and slowly it&#39;s revealed that they have mysterious powers.\">4400 people who vanished over the cou<span class=\"structural\">...</span></span>"] }, \n", "{ name: "<span title=\"years_off_platform: Int\">years_off_platform</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">23</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">11</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">23</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">25</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">25</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">21</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">23</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">24</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">23</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">20</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">21</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">20</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>"] }, \n", - "], id: -1023410032, rootId: -1023410032, totalRows: 4940 } ) });\n", + "], id: 436207760, rootId: 436207760, totalRows: 4940 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410032) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207760) });\n", "\n", "\n", " </script>\n", @@ -12952,10 +13096,10 @@ " \n", " \n", " \n", - "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescriptionyears_off_platform
s7114MovieTo and From New YorkSorin Dan MihalcescuBarbara King, Shaana Diya, John Krisi...United States2008-01-012006TV-MA81 minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...2
s1766TV ShowDinner for FivenullnullUnited States2008-02-042007TV-MA1 SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...1
s3249MovieJust Another Love StoryOle BornedalAnders W. Berthelsen, Rebecka Hemse, ...Denmark2009-05-052007TV-MA104 minDramas, International MoviesWhen he causes a car accident that le...2
s3841MovieMad Ron's Prevues from HellJim MonacoNick Pawlow, Jordu Schell, Jay Kushwa...United States2010-11-011987NR84 minCult Movies, Horror MoviesThis collection cherry-picks trailers...23
s2042MovieEven the RainIcíar BollaínLuis Tosar, Gael García Bernal, Juan ...Spain, Mexico, France2011-05-172010TV-MA103 minDramas, International MoviesWhile making a film about the incursi...1
s3222MovieJoseph: King of DreamsRob LaDuca, Robert C. RamirezBen Affleck, Mark Hamill, Richard Her...United States2011-09-272000TV-PG75 minChildren & Family Movies, Dramas, Fai...With his gift of dream interpretation...11
s233MovieA Stoning in Fulham CountyLarry ElikannKen Olin, Jill Eikenberry, Maureen Mu...United States2011-10-011988TV-1495 minDramasAfter reckless teens kill an Amish ch...23
s309MovieAdam: His Song ContinuesRobert MarkowitzDaniel J. Travanti, JoBeth Williams, ...United States2011-10-011986TV-MA96 minDramasAfter their child was abducted and mu...25
s2623MovieHard LessonsEric LaneuvilleDenzel Washington, Lynn Whitfield, Ri...United States2011-10-011986TV-1494 minDramasThis drama based on real-life events ...25
s2963MovieIn Defense of a Married ManJoel OlianskyJudith Light, Michael Ontkean, Jerry ...United States2011-10-011990TV-1494 minDramasA lawyer's husband is having an affai...21
s5042MovieQuiet Victory: The Charlie Wedemeyer ...Roy Campanella IIPam Dawber, Michael Nouri, Bess Meyer...United States2011-10-011988TV-PG93 minDramas, Sports MoviesWhen high school football coach Charl...23
s5833MovieStrange VoicesArthur Allan SeidelmanNancy McKeon, Valerie Harper, Stephen...United States2011-10-011987TV-PG96 minDramasWhen their college-age daughter sudde...24
s6846MovieThe Ryan White StoryJohn HerzfeldJudith Light, Lukas Haas, Michael Bow...United States2011-10-011989TV-PG94 minDramasAfter contracting HIV from a tainted ...22
s7150MovieToo Young the HeroBuzz KulikRicky Schroder, Jon DeVries, Debra Mo...United States2011-10-011988TV-MA94 minDramasTwelve-year-old Calvin manages to joi...23
s7231MovieTriumph of the HeartRichard MichaelsMario Van Peebles, Susan Ruttan, Lane...United States2011-10-011991TV-PG93 minDramas, Sports MoviesThis drama tells the tale of Ricky Be...20
s7363MovieUnspeakable ActsLinda OttoJill Clayburgh, Brad Davis, Sam BehrensUnited States2011-10-011990TV-1495 minDramasLaurie and Joseph are doctors who int...21
s7415MovieVictim of BeautyRoger YoungWilliam Devane, Jeri Ryan, Michele Ab...United States2011-10-011991TV-1493 minDramas, ThrillersA beauty pageant winner is stalked by...20
s819MovieBeing Elmo: A Puppeteer's JourneyConstance MarksKevin Clash, Whoopi GoldbergUnited States2012-02-212011PG76 minDocumentariesWhoopi Goldberg narrates Elmo creator...1
s3467MovieKung Fu Panda: HolidayTim JohnsonJack Black, Angelina Jolie, Dustin Ho...United States2012-12-012010TV-PG26 minChildren & Family Movies, ComediesAs preparations for the Winter Feast ...2
s6057TV ShowThe 4400nullJoel Gretsch, Jacqueline McKenzie, Pa...United States, United Kingdom2013-09-012007TV-144 SeasonsTV Dramas, TV Mysteries, TV Sci-Fi & ...4400 people who vanished over the cou...6
\n", + "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescriptionyears_off_platform
s7114MovieTo and From New YorkSorin Dan MihalcescuBarbara King, Shaana Diya, John Krisi...United States2008-01-012006TV-MA81 minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...2
s1766TV ShowDinner for FivenullnullUnited States2008-02-042007TV-MA1 SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...1
s3249MovieJust Another Love StoryOle BornedalAnders W. Berthelsen, Rebecka Hemse, ...Denmark2009-05-052007TV-MA104 minDramas, International MoviesWhen he causes a car accident that le...2
s3841MovieMad Ron's Prevues from HellJim MonacoNick Pawlow, Jordu Schell, Jay Kushwa...United States2010-11-011987NR84 minCult Movies, Horror MoviesThis collection cherry-picks trailers...23
s2042MovieEven the RainIcíar BollaínLuis Tosar, Gael García Bernal, Juan ...Spain, Mexico, France2011-05-172010TV-MA103 minDramas, International MoviesWhile making a film about the incursi...1
s3222MovieJoseph: King of DreamsRob LaDuca, Robert C. RamirezBen Affleck, Mark Hamill, Richard Her...United States2011-09-272000TV-PG75 minChildren & Family Movies, Dramas, Fai...With his gift of dream interpretation...11
s233MovieA Stoning in Fulham CountyLarry ElikannKen Olin, Jill Eikenberry, Maureen Mu...United States2011-10-011988TV-1495 minDramasAfter reckless teens kill an Amish ch...23
s309MovieAdam: His Song ContinuesRobert MarkowitzDaniel J. Travanti, JoBeth Williams, ...United States2011-10-011986TV-MA96 minDramasAfter their child was abducted and mu...25
s2623MovieHard LessonsEric LaneuvilleDenzel Washington, Lynn Whitfield, Ri...United States2011-10-011986TV-1494 minDramasThis drama based on real-life events ...25
s2963MovieIn Defense of a Married ManJoel OlianskyJudith Light, Michael Ontkean, Jerry ...United States2011-10-011990TV-1494 minDramasA lawyer's husband is having an affai...21
s5042MovieQuiet Victory: The Charlie Wedemeyer ...Roy Campanella IIPam Dawber, Michael Nouri, Bess Meyer...United States2011-10-011988TV-PG93 minDramas, Sports MoviesWhen high school football coach Charl...23
s5833MovieStrange VoicesArthur Allan SeidelmanNancy McKeon, Valerie Harper, Stephen...United States2011-10-011987TV-PG96 minDramasWhen their college-age daughter sudde...24
s6846MovieThe Ryan White StoryJohn HerzfeldJudith Light, Lukas Haas, Michael Bow...United States2011-10-011989TV-PG94 minDramasAfter contracting HIV from a tainted ...22
s7150MovieToo Young the HeroBuzz KulikRicky Schroder, Jon DeVries, Debra Mo...United States2011-10-011988TV-MA94 minDramasTwelve-year-old Calvin manages to joi...23
s7231MovieTriumph of the HeartRichard MichaelsMario Van Peebles, Susan Ruttan, Lane...United States2011-10-011991TV-PG93 minDramas, Sports MoviesThis drama tells the tale of Ricky Be...20
s7363MovieUnspeakable ActsLinda OttoJill Clayburgh, Brad Davis, Sam BehrensUnited States2011-10-011990TV-1495 minDramasLaurie and Joseph are doctors who int...21
s7415MovieVictim of BeautyRoger YoungWilliam Devane, Jeri Ryan, Michele Ab...United States2011-10-011991TV-1493 minDramas, ThrillersA beauty pageant winner is stalked by...20
s819MovieBeing Elmo: A Puppeteer's JourneyConstance MarksKevin Clash, Whoopi GoldbergUnited States2012-02-212011PG76 minDocumentariesWhoopi Goldberg narrates Elmo creator...1
s3467MovieKung Fu Panda: HolidayTim JohnsonJack Black, Angelina Jolie, Dustin Ho...United States2012-12-012010TV-PG26 minChildren & Family Movies, ComediesAs preparations for the Winter Feast ...2
s6057TV ShowThe 4400nullJoel Gretsch, Jacqueline McKenzie, Pa...United States, United Kingdom2013-09-012007TV-144 SeasonsTV Dramas, TV Mysteries, TV Sci-Fi & ...4400 people who vanished over the cou...6
\n", " \n", " \n", " " ], @@ -12979,8 +13123,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:02.994884Z", - "start_time": "2025-12-09T10:17:02.909920Z" + "end_time": "2025-12-19T15:14:45.196503918Z", + "start_time": "2025-12-19T15:14:43.499117583Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_62_jupyter" + ] } }, "source": [ @@ -13010,7 +13159,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="6arj8z"></div>\n", + " <div id="Zmbz3L"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -13035,7 +13184,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("6arj8z");\n", + " const containerDiv = document.getElementById("Zmbz3L");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -13137,7 +13286,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -13318,7 +13467,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -13400,7 +13549,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -13670,10 +13819,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -13917,8 +14066,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:03.174394Z", - "start_time": "2025-12-09T10:17:03.109326Z" + "end_time": "2025-12-19T15:14:47.976677732Z", + "start_time": "2025-12-19T15:14:45.480499563Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_63_jupyter" + ] } }, "source": [ @@ -14112,7 +14266,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410028"></table>\n", + " <table class="dataframe" id="df_436207764"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 6</p>\n", "\n", @@ -14399,10 +14553,10 @@ "{ name: "<span title=\"date_added: kotlinx.datetime.LocalDate\">date_added</span>", children: [], rightAlign: false, values: ["2008-01-01","2009-05-05","2009-11-18","2010-11-01","2011-05-17"] }, \n", "{ name: "<span title=\"release_year: Int\">release_year</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2006</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2007</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2009</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1987</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2010</span></span>"] }, \n", "{ name: "<span title=\"duration: String\">duration</span>", children: [], rightAlign: false, values: ["81 min","104 min","29 min","84 min","103 min"] }, \n", - "], id: -1023410028, rootId: -1023410028, totalRows: 5 } ) });\n", + "], id: 436207764, rootId: 436207764, totalRows: 5 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410028) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207764) });\n", "\n", "\n", " </script>\n", @@ -14575,10 +14729,10 @@ " \n", " \n", " \n", - "
typetitlecountrydate_addedrelease_yearduration
MovieTo and From New YorkUnited States2008-01-01200681 min
MovieJust Another Love StoryDenmark2009-05-052007104 min
MovieSplatterUnited States2009-11-18200929 min
MovieMad Ron's Prevues from HellUnited States2010-11-01198784 min
MovieEven the RainSpain, Mexico, France2011-05-172010103 min
\n", + "
typetitlecountrydate_addedrelease_yearduration
MovieTo and From New YorkUnited States2008-01-01200681 min
MovieJust Another Love StoryDenmark2009-05-052007104 min
MovieSplatterUnited States2009-11-18200929 min
MovieMad Ron's Prevues from HellUnited States2010-11-01198784 min
MovieEven the RainSpain, Mexico, France2011-05-172010103 min
\n", " \n", " \n", " " ], @@ -14602,8 +14756,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:03.286444Z", - "start_time": "2025-12-09T10:17:03.236047Z" + "end_time": "2025-12-19T15:14:50.494427005Z", + "start_time": "2025-12-19T15:14:48.703312075Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_65_jupyter" + ] } }, "source": [ @@ -14618,7 +14777,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -15287,8 +15446,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:03.436921Z", - "start_time": "2025-12-09T10:17:03.389253Z" + "end_time": "2025-12-19T15:14:52.676018666Z", + "start_time": "2025-12-19T15:14:51.359310426Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_67_jupyter" + ] } }, "source": [ @@ -15303,7 +15467,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -15972,8 +16136,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:03.636132Z", - "start_time": "2025-12-09T10:17:03.590923Z" + "end_time": "2025-12-19T15:14:55.430738696Z", + "start_time": "2025-12-19T15:14:54.012361518Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_69_jupyter" + ] } }, "source": [ @@ -16167,7 +16336,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410016"></table>\n", + " <table class="dataframe" id="df_436207776"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 6</p>\n", "\n", @@ -16454,10 +16623,10 @@ "{ name: "<span title=\"date_added: kotlinx.datetime.LocalDate\">date_added</span>", children: [], rightAlign: false, values: ["2021-01-15","2021-01-15","2021-01-15","2021-01-15","2021-01-15"] }, \n", "{ name: "<span title=\"release_year: Int\">release_year</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2021</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2021</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2021</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2016</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2013</span></span>"] }, \n", "{ name: "<span title=\"duration: String\">duration</span>", children: [], rightAlign: false, values: ["1 Season","4 Seasons","3 Seasons","3 Seasons","1 Season"] }, \n", - "], id: -1023410016, rootId: -1023410016, totalRows: 5 } ) });\n", + "], id: 436207776, rootId: 436207776, totalRows: 5 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410016) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207776) });\n", "\n", "\n", " </script>\n", @@ -16630,10 +16799,10 @@ " \n", " \n", " \n", - "
typetitlecountrydate_addedrelease_yearduration
TV ShowBling Empirenull2021-01-1520211 Season
TV ShowCarmen SandiegoUnited States2021-01-1520214 Seasons
TV ShowDisenchantmentUnited States2021-01-1520213 Seasons
TV ShowHenry DangerUnited States2021-01-1520163 Seasons
TV ShowKuroko's BasketballJapan2021-01-1520131 Season
\n", + "
typetitlecountrydate_addedrelease_yearduration
TV ShowBling Empirenull2021-01-1520211 Season
TV ShowCarmen SandiegoUnited States2021-01-1520214 Seasons
TV ShowDisenchantmentUnited States2021-01-1520213 Seasons
TV ShowHenry DangerUnited States2021-01-1520163 Seasons
TV ShowKuroko's BasketballJapan2021-01-1520131 Season
\n", " \n", " \n", " " ], @@ -16655,8 +16824,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:03.909604Z", - "start_time": "2025-12-09T10:17:03.727441Z" + "end_time": "2025-12-19T15:14:57.969029612Z", + "start_time": "2025-12-19T15:14:56.096570885Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_71_jupyter", + "Line_72_jupyter", + "Line_73_jupyter" + ] } }, "source": [ @@ -16671,7 +16847,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -17342,8 +17518,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:04.122348Z", - "start_time": "2025-12-09T10:17:03.991214Z" + "end_time": "2025-12-19T15:15:00.020714372Z", + "start_time": "2025-12-19T15:14:58.411883142Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_75_jupyter" + ] } }, "source": [ @@ -17385,7 +17566,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="tsdVHu"></div>\n", + " <div id="wihgJm"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -17410,7 +17591,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("tsdVHu");\n", + " const containerDiv = document.getElementById("wihgJm");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -17524,7 +17705,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -17831,7 +18012,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -17943,7 +18124,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -18070,10 +18251,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -18491,15 +18672,19 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:04.444328Z", - "start_time": "2025-12-09T10:17:04.225381Z" + "end_time": "2025-12-19T15:15:02.813543062Z", + "start_time": "2025-12-19T15:15:00.561470047Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_76_jupyter", + "Line_77_jupyter", + "Line_78_jupyter" + ] } }, "source": [ - "import kotlin.time.ExperimentalTime\n", - "\n", "// splitting cast and couting number of actors\n", - "@OptIn(ExperimentalTime::class)\n", "val cast_df = df\n", " .split { cast }.by(',').inplace()\n", " .add(\"size_cast\") { \"cast\">().size }\n", @@ -18690,7 +18875,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410008"></table>\n", + " <table class="dataframe" id="df_436207784"></table>\n", "\n", "<p class="dataframe_description">... showing only top 20 of 7777 rows</p><p class="dataframe_description">DataFrame: rowsCount = 7777, columnsCount = 13</p>\n", "\n", @@ -18984,10 +19169,10 @@ "{ name: "<span title=\"listed_in: String\">listed_in</span>", children: [], rightAlign: false, values: ["Dramas, Independent Movies, Thrillers","Stand-Up Comedy &#38; Talk Shows","Dramas, International Movies","Horror Movies","Cult Movies, Horror Movies","Dramas, International Movies","<span class=\"formatted\" title=\"Children &#38; Family Movies, Dramas, Faith &#38; Spirituality\">Children &#38; Family Movies, Dramas, Fai<span class=\"structural\">...</span></span>","Dramas","Dramas","Dramas","Dramas","Dramas, Sports Movies","Dramas","Dramas","Dramas","Dramas, Sports Movies","Dramas","Dramas, Thrillers","Documentaries","Comedies"] }, \n", "{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"While covering a story in New York City, a Seattle-based reporter uncovers a link between two missing women that changes her article entirely.\">While covering a story in New York Ci<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"In each episode, four celebrities join host Jon Favreau for dinner and share revealing stories about both show business and their personal lives.\">In each episode, four celebrities joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When he causes a car accident that leaves a young woman with amnesia, a man finds himself telling incredible lies to make her and her family happy.\">When he causes a car accident that le<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After committing suicide, a washed-up rocker returns from the grave to torment the five people who betrayed him in life.\">After committing suicide, a washed-up<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This collection cherry-picks trailers, forgotten scenes and poster art from 47 gory oldies, including Bay of Blood and The Blood Spattered Bride.\">This collection cherry-picks trailers<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"While making a film about the incursion of Christopher Columbus in the New World, a director finds the Bolivian locals protesting modern exploitation.\">While making a film about the incursi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"With his gift of dream interpretation and his brilliantly colored coat, Joseph inspires jealousy in his brothers in this animated Bible story.\">With his gift of dream interpretation<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After reckless teens kill an Amish child, a prosecutor attempts to bring the youths to justice despite the condemnation he faces from the community.\">After reckless teens kill an Amish ch<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After their child was abducted and murdered, John and Reve Walsh fought to raise national awareness of the problem of missing children.\">After their child was abducted and mu<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This drama based on real-life events tells the story of George McKenna, the tough, determined new principal of a notorious Los Angeles high school.\">This drama based on real-life events <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A lawyer&#39;s husband is having an affair. When his mistress is found dead, he becomes the prime suspect &#8211; and his wife must take charge of his defense.\">A lawyer&#39;s husband is having an affai<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When high school football coach Charlie Wedemeyer is diagnosed with Lou Gehrig&#39;s disease, he perseveres in leading his team despite becoming disabled.\">When high school football coach Charl<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When their college-age daughter suddenly begins acting erratically and is diagnosed with schizophrenia, a desperate couple seeks treatment for her.\">When their college-age daughter sudde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After contracting HIV from a tainted blood treatment, teenaged hemophiliac Ryan White is forced to fight for his right to attend public school.\">After contracting HIV from a tainted <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Twelve-year-old Calvin manages to join the navy and serves in the battle of Guadalcanal. But when his age is revealed, the boy is sent to the brig.\">Twelve-year-old Calvin manages to joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This drama tells the tale of Ricky Bell, a pro running back with the Tampa Bay Buccaneers who died of a muscle disease in the prime of his career.\">This drama tells the tale of Ricky Be<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Laurie and Joseph are doctors who interview sexually abused children. With a lot of energy they track down a pedophile who has abused many toddlers.\">Laurie and Joseph are doctors who int<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"A beauty pageant winner is stalked by a serial killer who kidnaps her sister and torments her family in this thriller based on a shocking true story.\">A beauty pageant winner is stalked by<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Whoopi Goldberg narrates Elmo creator Kevin Clash&#39;s remarkable journey from a working-class Baltimore neighborhood to Jim Henson&#39;s &#34;Sesame Street.&#34;\">Whoopi Goldberg narrates Elmo creator<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Will Ferrell stars as a Spanish-speaking cowboy in this comedy about a Mexican clan trying to rescue their ranch from greedy creditors.\">Will Ferrell stars as a Spanish-speak<span class=\"structural\">...</span></span>"] }, \n", "{ name: "<span title=\"size_cast: Int\">size_cast</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">12</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">10</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">12</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">12</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">4</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8</span></span>"] }, \n", - "], id: -1023410008, rootId: -1023410008, totalRows: 7777 } ) });\n", + "], id: 436207784, rootId: 436207784, totalRows: 7777 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410008) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207784) });\n", "\n", "\n", " </script>\n", @@ -19160,10 +19345,10 @@ " \n", " \n", " \n", - "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescriptionsize_cast
s7114MovieTo and From New YorkSorin Dan Mihalcescu[Barbara King, Shaana Diya, John Kris...United States2008-01-01T00:00:00Z2006TV-MA81 minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...6
s1766TV ShowDinner for Fivenull[ ]United States2008-02-04T00:00:00Z2007TV-MA1 SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...0
s3249MovieJust Another Love StoryOle Bornedal[Anders W. Berthelsen, Rebecka Hemse,...Denmark2009-05-05T00:00:00Z2007TV-MA104 minDramas, International MoviesWhen he causes a car accident that le...12
s5766MovieSplatterJoe Dante[Corey Feldman, Tony Todd, Tara Leigh...United States2009-11-18T00:00:00Z2009TV-MA29 minHorror MoviesAfter committing suicide, a washed-up...6
s3841MovieMad Ron's Prevues from HellJim Monaco[Nick Pawlow, Jordu Schell, Jay Kushw...United States2010-11-01T00:00:00Z1987NR84 minCult Movies, Horror MoviesThis collection cherry-picks trailers...10
s2042MovieEven the RainIcíar Bollaín[Luis Tosar, Gael García Bernal, Juan...Spain, Mexico, France2011-05-17T00:00:00Z2010TV-MA103 minDramas, International MoviesWhile making a film about the incursi...12
s3222MovieJoseph: King of DreamsRob LaDuca, Robert C. Ramirez[Ben Affleck, Mark Hamill, Richard He...United States2011-09-27T00:00:00Z2000TV-PG75 minChildren & Family Movies, Dramas, Fai...With his gift of dream interpretation...15
s233MovieA Stoning in Fulham CountyLarry Elikann[Ken Olin, Jill Eikenberry, Maureen M...United States2011-10-01T00:00:00Z1988TV-1495 minDramasAfter reckless teens kill an Amish ch...12
s309MovieAdam: His Song ContinuesRobert Markowitz[Daniel J. Travanti, JoBeth Williams,...United States2011-10-01T00:00:00Z1986TV-MA96 minDramasAfter their child was abducted and mu...5
s2623MovieHard LessonsEric Laneuville[Denzel Washington, Lynn Whitfield, R...United States2011-10-01T00:00:00Z1986TV-1494 minDramasThis drama based on real-life events ...4
s2963MovieIn Defense of a Married ManJoel Oliansky[Judith Light, Michael Ontkean, Jerry...United States2011-10-01T00:00:00Z1990TV-1494 minDramasA lawyer's husband is having an affai...8
s5042MovieQuiet Victory: The Charlie Wedemeyer ...Roy Campanella II[Pam Dawber, Michael Nouri, Bess Meye...United States2011-10-01T00:00:00Z1988TV-PG93 minDramas, Sports MoviesWhen high school football coach Charl...6
s5833MovieStrange VoicesArthur Allan Seidelman[Nancy McKeon, Valerie Harper, Stephe...United States2011-10-01T00:00:00Z1987TV-PG96 minDramasWhen their college-age daughter sudde...5
s6846MovieThe Ryan White StoryJohn Herzfeld[Judith Light, Lukas Haas, Michael Bo...United States2011-10-01T00:00:00Z1989TV-PG94 minDramasAfter contracting HIV from a tainted ...8
s7150MovieToo Young the HeroBuzz Kulik[Ricky Schroder, Jon DeVries, Debra M...United States2011-10-01T00:00:00Z1988TV-MA94 minDramasTwelve-year-old Calvin manages to joi...7
s7231MovieTriumph of the HeartRichard Michaels[Mario Van Peebles, Susan Ruttan, Lan...United States2011-10-01T00:00:00Z1991TV-PG93 minDramas, Sports MoviesThis drama tells the tale of Ricky Be...8
s7363MovieUnspeakable ActsLinda Otto[Jill Clayburgh, Brad Davis, Sam Behr...United States2011-10-01T00:00:00Z1990TV-1495 minDramasLaurie and Joseph are doctors who int...3
s7415MovieVictim of BeautyRoger Young[William Devane, Jeri Ryan, Michele A...United States2011-10-01T00:00:00Z1991TV-1493 minDramas, ThrillersA beauty pageant winner is stalked by...8
s819MovieBeing Elmo: A Puppeteer's JourneyConstance Marks[Kevin Clash, Whoopi Goldberg]United States2012-02-21T00:00:00Z2011PG76 minDocumentariesWhoopi Goldberg narrates Elmo creator...2
s1230MovieCasa de mi PadreMatt Piedmont[Will Ferrell, Gael García Bernal, Di...United States, Mexico2012-11-14T00:00:00Z2012R84 minComediesWill Ferrell stars as a Spanish-speak...8
\n", + "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescriptionsize_cast
s7114MovieTo and From New YorkSorin Dan Mihalcescu[Barbara King, Shaana Diya, John Kris...United States2008-01-01T00:00:00Z2006TV-MA81 minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...6
s1766TV ShowDinner for Fivenull[ ]United States2008-02-04T00:00:00Z2007TV-MA1 SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...0
s3249MovieJust Another Love StoryOle Bornedal[Anders W. Berthelsen, Rebecka Hemse,...Denmark2009-05-05T00:00:00Z2007TV-MA104 minDramas, International MoviesWhen he causes a car accident that le...12
s5766MovieSplatterJoe Dante[Corey Feldman, Tony Todd, Tara Leigh...United States2009-11-18T00:00:00Z2009TV-MA29 minHorror MoviesAfter committing suicide, a washed-up...6
s3841MovieMad Ron's Prevues from HellJim Monaco[Nick Pawlow, Jordu Schell, Jay Kushw...United States2010-11-01T00:00:00Z1987NR84 minCult Movies, Horror MoviesThis collection cherry-picks trailers...10
s2042MovieEven the RainIcíar Bollaín[Luis Tosar, Gael García Bernal, Juan...Spain, Mexico, France2011-05-17T00:00:00Z2010TV-MA103 minDramas, International MoviesWhile making a film about the incursi...12
s3222MovieJoseph: King of DreamsRob LaDuca, Robert C. Ramirez[Ben Affleck, Mark Hamill, Richard He...United States2011-09-27T00:00:00Z2000TV-PG75 minChildren & Family Movies, Dramas, Fai...With his gift of dream interpretation...15
s233MovieA Stoning in Fulham CountyLarry Elikann[Ken Olin, Jill Eikenberry, Maureen M...United States2011-10-01T00:00:00Z1988TV-1495 minDramasAfter reckless teens kill an Amish ch...12
s309MovieAdam: His Song ContinuesRobert Markowitz[Daniel J. Travanti, JoBeth Williams,...United States2011-10-01T00:00:00Z1986TV-MA96 minDramasAfter their child was abducted and mu...5
s2623MovieHard LessonsEric Laneuville[Denzel Washington, Lynn Whitfield, R...United States2011-10-01T00:00:00Z1986TV-1494 minDramasThis drama based on real-life events ...4
s2963MovieIn Defense of a Married ManJoel Oliansky[Judith Light, Michael Ontkean, Jerry...United States2011-10-01T00:00:00Z1990TV-1494 minDramasA lawyer's husband is having an affai...8
s5042MovieQuiet Victory: The Charlie Wedemeyer ...Roy Campanella II[Pam Dawber, Michael Nouri, Bess Meye...United States2011-10-01T00:00:00Z1988TV-PG93 minDramas, Sports MoviesWhen high school football coach Charl...6
s5833MovieStrange VoicesArthur Allan Seidelman[Nancy McKeon, Valerie Harper, Stephe...United States2011-10-01T00:00:00Z1987TV-PG96 minDramasWhen their college-age daughter sudde...5
s6846MovieThe Ryan White StoryJohn Herzfeld[Judith Light, Lukas Haas, Michael Bo...United States2011-10-01T00:00:00Z1989TV-PG94 minDramasAfter contracting HIV from a tainted ...8
s7150MovieToo Young the HeroBuzz Kulik[Ricky Schroder, Jon DeVries, Debra M...United States2011-10-01T00:00:00Z1988TV-MA94 minDramasTwelve-year-old Calvin manages to joi...7
s7231MovieTriumph of the HeartRichard Michaels[Mario Van Peebles, Susan Ruttan, Lan...United States2011-10-01T00:00:00Z1991TV-PG93 minDramas, Sports MoviesThis drama tells the tale of Ricky Be...8
s7363MovieUnspeakable ActsLinda Otto[Jill Clayburgh, Brad Davis, Sam Behr...United States2011-10-01T00:00:00Z1990TV-1495 minDramasLaurie and Joseph are doctors who int...3
s7415MovieVictim of BeautyRoger Young[William Devane, Jeri Ryan, Michele A...United States2011-10-01T00:00:00Z1991TV-1493 minDramas, ThrillersA beauty pageant winner is stalked by...8
s819MovieBeing Elmo: A Puppeteer's JourneyConstance Marks[Kevin Clash, Whoopi Goldberg]United States2012-02-21T00:00:00Z2011PG76 minDocumentariesWhoopi Goldberg narrates Elmo creator...2
s1230MovieCasa de mi PadreMatt Piedmont[Will Ferrell, Gael García Bernal, Di...United States, Mexico2012-11-14T00:00:00Z2012R84 minComediesWill Ferrell stars as a Spanish-speak...8
\n", " \n", " \n", " " ], @@ -19180,8 +19365,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:04.555122Z", - "start_time": "2025-12-09T10:17:04.471849Z" + "end_time": "2025-12-19T15:15:04.563254541Z", + "start_time": "2025-12-19T15:15:03.284611342Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_80_jupyter" + ] } }, "source": [ @@ -19212,7 +19402,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="VR1CMY"></div>\n", + " <div id="l67h2H"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -19237,7 +19427,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("VR1CMY");\n", + " const containerDiv = document.getElementById("l67h2H");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -19286,8 +19476,8 @@ "},\n", ""stat":"identity",\n", ""data":{\n", - ""x":[0.5,1.5,2.5,3.5,4.5,5.5,6.5,7.5,8.5,9.5,10.5,11.5,12.5,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5],\n", - ""count":[718.0,826.0,185.0,170.0,247.0,332.0,577.0,526.0,1057.0,623.0,1237.0,400.0,252.0,156.0,105.0,105.0,65.0,36.0,33.0,22.0,23.0,11.0,9.0,7.0,7.0,7.0,6.0,3.0,6.0,1.0,2.0,1.0,1.0,3.0,3.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,3.0,0.0,2.0]\n", + ""count":[718.0,826.0,185.0,170.0,247.0,332.0,577.0,526.0,1057.0,623.0,1237.0,400.0,252.0,156.0,105.0,105.0,65.0,36.0,33.0,22.0,23.0,11.0,9.0,7.0,7.0,7.0,6.0,3.0,6.0,1.0,2.0,1.0,1.0,3.0,3.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,3.0,0.0,2.0],\n", + ""x":[0.5,1.5,2.5,3.5,4.5,5.5,6.5,7.5,8.5,9.5,10.5,11.5,12.5,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5]\n", "},\n", ""sampling":"none",\n", ""inherit_aes":false,\n", @@ -19347,7 +19537,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -19540,7 +19730,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -19648,7 +19838,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -19871,10 +20061,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -20086,8 +20276,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:04.715309Z", - "start_time": "2025-12-09T10:17:04.618283Z" + "end_time": "2025-12-19T15:15:05.981981071Z", + "start_time": "2025-12-19T15:15:04.997139160Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_81_jupyter", + "Line_82_jupyter", + "Line_83_jupyter" + ] } }, "source": [ @@ -20278,7 +20475,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410004"></table>\n", + " <table class="dataframe" id="df_436207788"></table>\n", "\n", "<p class="dataframe_description">... showing only top 20 of 32847 rows</p><p class="dataframe_description">DataFrame: rowsCount = 32847, columnsCount = 2</p>\n", "\n", @@ -20561,10 +20758,10 @@ "/*<!--*/\n", "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"cast: String\">cast</span>", children: [], rightAlign: false, values: ["Anupam Kher","Shah Rukh Khan","Om Puri","Naseeruddin Shah","Takahiro Sakurai","Akshay Kumar","Yuki Kaji","Amitabh Bachchan","Boman Irani","Paresh Rawal","Kareena Kapoor","Andrea Libman","John Cleese","Vincent Tong","Tara Strong","Ashleigh Ball","Nawazuddin Siddiqui","Ajay Devgn","Daisuke Ono","Salman Khan"] }, \n", "{ name: "<span title=\"count: Int\">count</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">42</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">35</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">27</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">27</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">27</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">27</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">25</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">24</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">24</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">24</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">21</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">21</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">20</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">20</span></span>"] }, \n", - "], id: -1023410004, rootId: -1023410004, totalRows: 32847 } ) });\n", + "], id: 436207788, rootId: 436207788, totalRows: 32847 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410004) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207788) });\n", "\n", "\n", " </script>\n", @@ -20737,10 +20934,10 @@ " \n", " \n", " \n", - "
castcount
Anupam Kher42
Shah Rukh Khan35
Om Puri30
Naseeruddin Shah30
Takahiro Sakurai29
Akshay Kumar29
Yuki Kaji27
Amitabh Bachchan27
Boman Irani27
Paresh Rawal27
Kareena Kapoor25
Andrea Libman24
John Cleese24
Vincent Tong24
Tara Strong22
Ashleigh Ball22
Nawazuddin Siddiqui21
Ajay Devgn21
Daisuke Ono20
Salman Khan20
\n", + "
castcount
Anupam Kher42
Shah Rukh Khan35
Om Puri30
Naseeruddin Shah30
Takahiro Sakurai29
Akshay Kumar29
Yuki Kaji27
Amitabh Bachchan27
Boman Irani27
Paresh Rawal27
Kareena Kapoor25
Andrea Libman24
John Cleese24
Vincent Tong24
Tara Strong22
Ashleigh Ball22
Nawazuddin Siddiqui21
Ajay Devgn21
Daisuke Ono20
Salman Khan20
\n", " \n", " \n", " " ], @@ -20757,8 +20954,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:04.830997Z", - "start_time": "2025-12-09T10:17:04.746385Z" + "end_time": "2025-12-19T15:15:08.201166455Z", + "start_time": "2025-12-19T15:15:06.439694247Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_85_jupyter" + ] } }, "source": [ @@ -20788,7 +20990,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="77S8Al"></div>\n", + " <div id="8olF75"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -20813,7 +21015,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("77S8Al");\n", + " const containerDiv = document.getElementById("8olF75");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -20912,7 +21114,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -21135,7 +21337,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -21203,7 +21405,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -21527,10 +21729,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -21678,8 +21880,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:05.094818Z", - "start_time": "2025-12-09T10:17:04.959643Z" + "end_time": "2025-12-19T15:15:10.156040275Z", + "start_time": "2025-12-19T15:15:08.611207777Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_86_jupyter", + "Line_87_jupyter", + "Line_88_jupyter" + ] } }, "source": [ @@ -21871,7 +22080,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023410000"></table>\n", + " <table class="dataframe" id="df_436207792"></table>\n", "\n", "<p class="dataframe_description">DataRow: index = 0, columnsCount = 2</p>\n", "\n", @@ -22152,24 +22361,24 @@ "})()\n", "\n", "/*<!--*/\n", - "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"Movie: DataFrame<*>\">Movie</span>", children: [], rightAlign: false, values: [{ frameId: -1023409999, value: "<b>DataFrame 23049 x 2</b>" }] }, \n", - "{ name: "<span title=\"TV Show: DataFrame<*>\">TV Show</span>", children: [], rightAlign: false, values: [{ frameId: -1023409998, value: "<b>DataFrame 13538 x 2</b>" }] }, \n", - "], id: -1023410000, rootId: -1023410000, totalRows: 1 } ) });\n", + "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"Movie: DataFrame<*>\">Movie</span>", children: [], rightAlign: false, values: [{ frameId: 436207793, value: "<b>DataFrame 23049 x 2</b>" }] }, \n", + "{ name: "<span title=\"TV Show: DataFrame<*>\">TV Show</span>", children: [], rightAlign: false, values: [{ frameId: 436207794, value: "<b>DataFrame 13538 x 2</b>" }] }, \n", + "], id: 436207792, rootId: 436207792, totalRows: 1 } ) });\n", "/*-->*/\n", "\n", "/*<!--*/\n", "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"cast: String\">cast</span>", children: [], rightAlign: false, values: ["Anupam Kher","Shah Rukh Khan","Om Puri","Naseeruddin Shah","Akshay Kumar"] }, \n", "{ name: "<span title=\"count: Int\">count</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">41</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">35</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">30</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29</span></span>"] }, \n", - "], id: -1023409999, rootId: -1023410000, totalRows: 23049 } ) });\n", + "], id: 436207793, rootId: 436207792, totalRows: 23049 } ) });\n", "/*-->*/\n", "\n", "/*<!--*/\n", "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"cast: String\">cast</span>", children: [], rightAlign: false, values: ["Takahiro Sakurai","Yuki Kaji","Daisuke Ono","Ai Kayano","Junichi Suwabe"] }, \n", "{ name: "<span title=\"count: Int\">count</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">22</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">17</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">16</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">16</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15</span></span>"] }, \n", - "], id: -1023409998, rootId: -1023410000, totalRows: 13538 } ) });\n", + "], id: 436207794, rootId: 436207792, totalRows: 13538 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023410000) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207792) });\n", "\n", "\n", " </script>\n", @@ -22342,10 +22551,10 @@ " \n", " \n", " \n", - "
MovieTV Show
DataFrame [23049 x 2]
castcount
Anupam Kher41
Shah Rukh Khan35
Om Puri30
Naseeruddin Shah30
Akshay Kumar29

... showing only top 5 of 23049 rows

DataFrame [13538 x 2]
castcount
Takahiro Sakurai22
Yuki Kaji17
Daisuke Ono16
Ai Kayano16
Junichi Suwabe15

... showing only top 5 of 13538 rows

\n", + "
MovieTV Show
DataFrame [23049 x 2]
castcount
Anupam Kher41
Shah Rukh Khan35
Om Puri30
Naseeruddin Shah30
Akshay Kumar29

... showing only top 5 of 23049 rows

DataFrame [13538 x 2]
castcount
Takahiro Sakurai22
Yuki Kaji17
Daisuke Ono16
Ai Kayano16
Junichi Suwabe15

... showing only top 5 of 13538 rows

\n", " \n", " \n", " " ], @@ -22362,8 +22571,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:05.344210Z", - "start_time": "2025-12-09T10:17:05.169274Z" + "end_time": "2025-12-19T15:15:14.462343154Z", + "start_time": "2025-12-19T15:15:10.512663892Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_90_jupyter" + ] } }, "source": [ @@ -22404,7 +22618,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="KZQkLx"></div>\n", + " <div id="2iAT9s"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -22429,7 +22643,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("KZQkLx");\n", + " const containerDiv = document.getElementById("2iAT9s");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -22586,7 +22800,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -22733,117 +22947,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#pCowD58 .plot-title {\n", + "#pmOJ41b .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#pCowD58 .plot-subtitle {\n", + "#pmOJ41b .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pCowD58 .plot-caption {\n", + "#pmOJ41b .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pCowD58 .hyperlink-element {\n", + "#pmOJ41b .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#pCowD58 .legend-title {\n", + "#pmOJ41b .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pCowD58 .legend-item {\n", + "#pmOJ41b .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pCowD58 .axis-title-x {\n", + "#pmOJ41b .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pCowD58 .axis-text-x {\n", + "#pmOJ41b .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dPxQYhC .axis-tooltip-text-x {\n", + "#d62vcwk .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pCowD58 .axis-title-y {\n", + "#pmOJ41b .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pCowD58 .axis-text-y {\n", + "#pmOJ41b .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dPxQYhC .axis-tooltip-text-y {\n", + "#d62vcwk .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pCowD58 .facet-strip-text-x {\n", + "#pmOJ41b .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pCowD58 .facet-strip-text-y {\n", + "#pmOJ41b .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dPxQYhC .tooltip-text {\n", + "#d62vcwk .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dPxQYhC .tooltip-title {\n", + "#d62vcwk .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dPxQYhC .tooltip-label {\n", + "#d62vcwk .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -22852,7 +23066,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -22906,7 +23120,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -22974,7 +23188,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -23157,7 +23371,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -23172,117 +23386,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#p0pO10K .plot-title {\n", + "#px6JX13 .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#p0pO10K .plot-subtitle {\n", + "#px6JX13 .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p0pO10K .plot-caption {\n", + "#px6JX13 .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p0pO10K .hyperlink-element {\n", + "#px6JX13 .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#p0pO10K .legend-title {\n", + "#px6JX13 .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p0pO10K .legend-item {\n", + "#px6JX13 .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p0pO10K .axis-title-x {\n", + "#px6JX13 .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p0pO10K .axis-text-x {\n", + "#px6JX13 .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dci8dFE .axis-tooltip-text-x {\n", + "#dnQyZlQ .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p0pO10K .axis-title-y {\n", + "#px6JX13 .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#p0pO10K .axis-text-y {\n", + "#px6JX13 .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dci8dFE .axis-tooltip-text-y {\n", + "#dnQyZlQ .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p0pO10K .facet-strip-text-x {\n", + "#px6JX13 .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#p0pO10K .facet-strip-text-y {\n", + "#px6JX13 .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dci8dFE .tooltip-text {\n", + "#dnQyZlQ .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dci8dFE .tooltip-title {\n", + "#dnQyZlQ .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dci8dFE .tooltip-label {\n", + "#dnQyZlQ .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -23291,7 +23505,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -23345,7 +23559,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -23413,7 +23627,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -23596,11 +23810,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -23886,8 +24100,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:05.523235Z", - "start_time": "2025-12-09T10:17:05.435748Z" + "end_time": "2025-12-19T15:15:16.808043642Z", + "start_time": "2025-12-19T15:15:15.170467579Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_91_jupyter", + "Line_92_jupyter", + "Line_93_jupyter" + ] } }, "source": [ @@ -23900,8 +24121,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:05.634372Z", - "start_time": "2025-12-09T10:17:05.559334Z" + "end_time": "2025-12-19T15:15:18.623489772Z", + "start_time": "2025-12-19T15:15:16.887201926Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_94_jupyter" + ] } }, "source": [ @@ -23929,7 +24155,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="Z22qqn"></div>\n", + " <div id="sUxCva"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -23954,7 +24180,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("Z22qqn");\n", + " const containerDiv = document.getElementById("sUxCva");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -24054,7 +24280,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -24239,7 +24465,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -24267,7 +24493,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -24460,10 +24686,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -24595,8 +24821,15 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:05.812397Z", - "start_time": "2025-12-09T10:17:05.691920Z" + "end_time": "2025-12-19T15:15:20.999918625Z", + "start_time": "2025-12-19T15:15:18.718310438Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_95_jupyter", + "Line_96_jupyter", + "Line_97_jupyter" + ] } }, "cell_type": "code", @@ -24787,7 +25020,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023409988"></table>\n", + " <table class="dataframe" id="df_436207804"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 5</p>\n", "\n", @@ -25071,12 +25304,12 @@ "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"country: String?\">country</span>", children: [], rightAlign: false, values: ["United States","India","United Kingdom","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","Canada"] }, \n", "{ name: "<span title=\"code: String\">code</span>", children: [], rightAlign: false, values: ["US","IN","GB","Unknown","CA"] }, \n", "{ name: "<span title=\"iso: String\">iso</span>", children: [], rightAlign: false, values: ["USA","IND","GBR","Unknown","CAN"] }, \n", - "{ name: "<span title=\"lat: Double\">lat</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">39,783730</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22,351115</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">54,702355</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">51,146139</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">61,066692</span></span>"] }, \n", - "{ name: "<span title=\"lon: Double\">lon</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">-100,445883</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">78,667743</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-3,276575</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">12,233285</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-107,991707</span></span>"] }, \n", - "], id: -1023409988, rootId: -1023409988, totalRows: 5 } ) });\n", + "{ name: "<span title=\"lat: Double\">lat</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">39.783730</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22.351115</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">54.702355</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">51.146139</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">61.066692</span></span>"] }, \n", + "{ name: "<span title=\"lon: Double\">lon</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">-100.445883</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">78.667743</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-3.276575</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">12.233285</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-107.991707</span></span>"] }, \n", + "], id: 436207804, rootId: 436207804, totalRows: 5 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023409988) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207804) });\n", "\n", "\n", " </script>\n", @@ -25249,10 +25482,10 @@ " \n", " \n", " \n", - "
countrycodeisolatlon
United StatesUSUSA39,783730-100,445883
IndiaININD22,35111578,667743
United KingdomGBGBR54,702355-3,276575
nullUnknownUnknown51,14613912,233285
CanadaCACAN61,066692-107,991707
\n", + "
countrycodeisolatlon
United StatesUSUSA39.783730-100.445883
IndiaININD22.35111578.667743
United KingdomGBGBR54.702355-3.276575
nullUnknownUnknown51.14613912.233285
CanadaCACAN61.066692-107.991707
\n", " \n", " \n", " " ], @@ -25268,8 +25501,15 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:05.983634Z", - "start_time": "2025-12-09T10:17:05.885266Z" + "end_time": "2025-12-19T15:15:23.057091448Z", + "start_time": "2025-12-19T15:15:21.493403465Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_99_jupyter", + "Line_100_jupyter", + "Line_101_jupyter" + ] } }, "cell_type": "code", @@ -25282,7 +25522,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -25949,8 +26189,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:06.186432Z", - "start_time": "2025-12-09T10:17:06.109620Z" + "end_time": "2025-12-19T15:15:27.494826634Z", + "start_time": "2025-12-19T15:15:25.459612784Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_103_jupyter" + ] } }, "source": [ @@ -25975,7 +26220,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="afbgrw"></div>\n", + " <div id="ZtuxTT"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -26000,7 +26245,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("afbgrw");\n", + " const containerDiv = document.getElementById("ZtuxTT");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -26094,7 +26339,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -26271,7 +26516,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -26299,7 +26544,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -26464,10 +26709,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -26578,8 +26823,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:06.505794Z", - "start_time": "2025-12-09T10:17:06.283713Z" + "end_time": "2025-12-19T15:15:30.607365620Z", + "start_time": "2025-12-19T15:15:27.954677985Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_104_jupyter", + "Line_105_jupyter", + "Line_106_jupyter" + ] } }, "source": [ @@ -26772,7 +27024,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023409980"></table>\n", + " <table class="dataframe" id="df_436207812"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 12</p>\n", "\n", @@ -27067,10 +27319,10 @@ "{ name: "<span title=\"duration: DataRow<*>\">duration</span>", children: [9, 10], rightAlign: false, values: ["<span class=\"formatted\" title=\"duration_num: 81\nduration_scale: min\"><span class=\"structural\">{ </span><span class=\"structural\">duration_num: </span><span class=\"numbers\">81</span><span class=\"structural\">, </span><span class=\"structural\">duration_scale:...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"duration_num: 1\nduration_scale: Season\"><span class=\"structural\">{ </span><span class=\"structural\">duration_num: </span><span class=\"numbers\">1</span><span class=\"structural\">, </span><span class=\"structural\">duration_scale: </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"duration_num: 104\nduration_scale: min\"><span class=\"structural\">{ </span><span class=\"structural\">duration_num: </span><span class=\"numbers\">104</span><span class=\"structural\">, </span><span class=\"structural\">duration_scale...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"duration_num: 29\nduration_scale: min\"><span class=\"structural\">{ </span><span class=\"structural\">duration_num: </span><span class=\"numbers\">29</span><span class=\"structural\">, </span><span class=\"structural\">duration_scale:...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"duration_num: 84\nduration_scale: min\"><span class=\"structural\">{ </span><span class=\"structural\">duration_num: </span><span class=\"numbers\">84</span><span class=\"structural\">, </span><span class=\"structural\">duration_scale:...</span><span class=\"structural\"> }</span></span>"] }, \n", "{ name: "<span title=\"listed_in: String\">listed_in</span>", children: [], rightAlign: false, values: ["Dramas, Independent Movies, Thrillers","Stand-Up Comedy &#38; Talk Shows","Dramas, International Movies","Horror Movies","Cult Movies, Horror Movies"] }, \n", "{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"While covering a story in New York City, a Seattle-based reporter uncovers a link between two missing women that changes her article entirely.\">While covering a story in New York Ci<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"In each episode, four celebrities join host Jon Favreau for dinner and share revealing stories about both show business and their personal lives.\">In each episode, four celebrities joi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"When he causes a car accident that leaves a young woman with amnesia, a man finds himself telling incredible lies to make her and her family happy.\">When he causes a car accident that le<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"After committing suicide, a washed-up rocker returns from the grave to torment the five people who betrayed him in life.\">After committing suicide, a washed-up<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"This collection cherry-picks trailers, forgotten scenes and poster art from 47 gory oldies, including Bay of Blood and The Blood Spattered Bride.\">This collection cherry-picks trailers<span class=\"structural\">...</span></span>"] }, \n", - "], id: -1023409980, rootId: -1023409980, totalRows: 5 } ) });\n", + "], id: 436207812, rootId: 436207812, totalRows: 5 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023409980) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207812) });\n", "\n", "\n", " </script>\n", @@ -27243,10 +27495,10 @@ " \n", " \n", " \n", - "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescription
duration_numduration_scale
s7114MovieTo and From New YorkSorin Dan MihalcescuBarbara King, Shaana Diya, John Krisi...United States2008-01-012006TV-MA81minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...
s1766TV ShowDinner for FivenullnullUnited States2008-02-042007TV-MA1SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...
s3249MovieJust Another Love StoryOle BornedalAnders W. Berthelsen, Rebecka Hemse, ...Denmark2009-05-052007TV-MA104minDramas, International MoviesWhen he causes a car accident that le...
s5766MovieSplatterJoe DanteCorey Feldman, Tony Todd, Tara Leigh,...United States2009-11-182009TV-MA29minHorror MoviesAfter committing suicide, a washed-up...
s3841MovieMad Ron's Prevues from HellJim MonacoNick Pawlow, Jordu Schell, Jay Kushwa...United States2010-11-011987NR84minCult Movies, Horror MoviesThis collection cherry-picks trailers...
\n", + "
show_idtypetitledirectorcastcountrydate_addedrelease_yearratingdurationlisted_indescription
duration_numduration_scale
s7114MovieTo and From New YorkSorin Dan MihalcescuBarbara King, Shaana Diya, John Krisi...United States2008-01-012006TV-MA81minDramas, Independent Movies, ThrillersWhile covering a story in New York Ci...
s1766TV ShowDinner for FivenullnullUnited States2008-02-042007TV-MA1SeasonStand-Up Comedy & Talk ShowsIn each episode, four celebrities joi...
s3249MovieJust Another Love StoryOle BornedalAnders W. Berthelsen, Rebecka Hemse, ...Denmark2009-05-052007TV-MA104minDramas, International MoviesWhen he causes a car accident that le...
s5766MovieSplatterJoe DanteCorey Feldman, Tony Todd, Tara Leigh,...United States2009-11-182009TV-MA29minHorror MoviesAfter committing suicide, a washed-up...
s3841MovieMad Ron's Prevues from HellJim MonacoNick Pawlow, Jordu Schell, Jay Kushwa...United States2010-11-011987NR84minCult Movies, Horror MoviesThis collection cherry-picks trailers...
\n", " \n", " \n", " " ], @@ -27263,8 +27515,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:06.685007Z", - "start_time": "2025-12-09T10:17:06.588679Z" + "end_time": "2025-12-19T15:15:33.151472688Z", + "start_time": "2025-12-19T15:15:31.172909794Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_108_jupyter", + "Line_109_jupyter", + "Line_110_jupyter" + ] } }, "source": [ @@ -27275,7 +27534,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -27945,8 +28204,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:06.942860Z", - "start_time": "2025-12-09T10:17:06.792340Z" + "end_time": "2025-12-19T15:15:35.802741062Z", + "start_time": "2025-12-19T15:15:34.019702021Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_112_jupyter" + ] } }, "source": [ @@ -27992,7 +28256,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="v76g1Z"></div>\n", + " <div id="A9VKPF"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -28017,7 +28281,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("v76g1Z");\n", + " const containerDiv = document.getElementById("A9VKPF");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -28197,7 +28461,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -28344,117 +28608,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#pnZcZq4 .plot-title {\n", + "#pGQL0BO .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#pnZcZq4 .plot-subtitle {\n", + "#pGQL0BO .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pnZcZq4 .plot-caption {\n", + "#pGQL0BO .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pnZcZq4 .hyperlink-element {\n", + "#pGQL0BO .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#pnZcZq4 .legend-title {\n", + "#pGQL0BO .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pnZcZq4 .legend-item {\n", + "#pGQL0BO .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pnZcZq4 .axis-title-x {\n", + "#pGQL0BO .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pnZcZq4 .axis-text-x {\n", + "#pGQL0BO .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dbLD1p5 .axis-tooltip-text-x {\n", + "#dUS4QXg .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pnZcZq4 .axis-title-y {\n", + "#pGQL0BO .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pnZcZq4 .axis-text-y {\n", + "#pGQL0BO .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dbLD1p5 .axis-tooltip-text-y {\n", + "#dUS4QXg .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pnZcZq4 .facet-strip-text-x {\n", + "#pGQL0BO .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pnZcZq4 .facet-strip-text-y {\n", + "#pGQL0BO .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dbLD1p5 .tooltip-text {\n", + "#dUS4QXg .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dbLD1p5 .tooltip-title {\n", + "#dUS4QXg .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dbLD1p5 .tooltip-label {\n", + "#dUS4QXg .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -28463,7 +28727,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -28501,7 +28765,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -28715,13 +28979,13 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -28852,7 +29116,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -28867,117 +29131,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#pfSkcN6 .plot-title {\n", + "#p10CeGu .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#pfSkcN6 .plot-subtitle {\n", + "#p10CeGu .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pfSkcN6 .plot-caption {\n", + "#p10CeGu .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pfSkcN6 .hyperlink-element {\n", + "#p10CeGu .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#pfSkcN6 .legend-title {\n", + "#p10CeGu .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pfSkcN6 .legend-item {\n", + "#p10CeGu .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pfSkcN6 .axis-title-x {\n", + "#p10CeGu .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pfSkcN6 .axis-text-x {\n", + "#p10CeGu .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#defaIDO .axis-tooltip-text-x {\n", + "#dUPqnXW .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pfSkcN6 .axis-title-y {\n", + "#p10CeGu .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pfSkcN6 .axis-text-y {\n", + "#p10CeGu .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#defaIDO .axis-tooltip-text-y {\n", + "#dUPqnXW .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pfSkcN6 .facet-strip-text-x {\n", + "#p10CeGu .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pfSkcN6 .facet-strip-text-y {\n", + "#p10CeGu .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#defaIDO .tooltip-text {\n", + "#dUPqnXW .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#defaIDO .tooltip-title {\n", + "#dUPqnXW .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#defaIDO .tooltip-label {\n", + "#dUPqnXW .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -28986,7 +29250,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -29024,7 +29288,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -29062,7 +29326,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -29180,11 +29444,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -29778,8 +30042,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:07.199436Z", - "start_time": "2025-12-09T10:17:07.120983Z" + "end_time": "2025-12-19T15:15:38.268777639Z", + "start_time": "2025-12-19T15:15:35.873285181Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_113_jupyter" + ] } }, "source": [ @@ -29970,7 +30239,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023409964"></table>\n", + " <table class="dataframe" id="df_436207828"></table>\n", "\n", "<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 6</p>\n", "\n", @@ -30257,10 +30526,10 @@ "{ name: "<span title=\"release_year: Int\">release_year</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2018</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1973</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1979</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1982</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1984</span></span>"] }, \n", "{ name: "<span title=\"duration_num: Int\">duration_num</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">312</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">253</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">237</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">233</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">230</span></span>"] }, \n", "{ name: "<span title=\"duration_scale: String\">duration_scale</span>", children: [], rightAlign: false, values: ["min","min","min","min","min"] }, \n", - "], id: -1023409964, rootId: -1023409964, totalRows: 5 } ) });\n", + "], id: 436207828, rootId: 436207828, totalRows: 5 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023409964) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207828) });\n", "\n", "\n", " </script>\n", @@ -30433,10 +30702,10 @@ " \n", " \n", " \n", - "
titlecountrydate_addedrelease_yearduration_numduration_scale
Black Mirror: BandersnatchUnited States2018-12-282018312min
The School of MischiefEgypt2020-05-211973253min
No Longer kidsEgypt2020-05-211979237min
Lock Your Girls Innull2020-05-211982233min
Raya and Sakinanull2020-05-211984230min
\n", + "
titlecountrydate_addedrelease_yearduration_numduration_scale
Black Mirror: BandersnatchUnited States2018-12-282018312min
The School of MischiefEgypt2020-05-211973253min
No Longer kidsEgypt2020-05-211979237min
Lock Your Girls Innull2020-05-211982233min
Raya and Sakinanull2020-05-211984230min
\n", " \n", " \n", " " ], @@ -30460,8 +30729,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:07.368140Z", - "start_time": "2025-12-09T10:17:07.310714Z" + "end_time": "2025-12-19T15:15:40.284801697Z", + "start_time": "2025-12-19T15:15:38.671193106Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_115_jupyter" + ] } }, "source": [ @@ -30473,7 +30747,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -31140,8 +31414,15 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:07.763282Z", - "start_time": "2025-12-09T10:17:07.571513Z" + "end_time": "2025-12-19T15:15:43.057159255Z", + "start_time": "2025-12-19T15:15:41.241646183Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_117_jupyter", + "Line_118_jupyter", + "Line_119_jupyter" + ] } }, "source": [ @@ -31158,7 +31439,7 @@ { "data": { "text/html": [ - " \n", " \n", " " ], @@ -31828,8 +32109,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:08.122979Z", - "start_time": "2025-12-09T10:17:07.956956Z" + "end_time": "2025-12-19T15:15:45.446647398Z", + "start_time": "2025-12-19T15:15:43.679532114Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_121_jupyter" + ] } }, "source": [ @@ -31870,7 +32156,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="Fkot94"></div>\n", + " <div id="6niCdR"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -31895,7 +32181,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("Fkot94");\n", + " const containerDiv = document.getElementById("6niCdR");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -32055,7 +32341,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32202,117 +32488,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#pmFPsu3 .plot-title {\n", + "#pmTSSVH .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#pmFPsu3 .plot-subtitle {\n", + "#pmTSSVH .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pmFPsu3 .plot-caption {\n", + "#pmTSSVH .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pmFPsu3 .hyperlink-element {\n", + "#pmTSSVH .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#pmFPsu3 .legend-title {\n", + "#pmTSSVH .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pmFPsu3 .legend-item {\n", + "#pmTSSVH .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pmFPsu3 .axis-title-x {\n", + "#pmTSSVH .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pmFPsu3 .axis-text-x {\n", + "#pmTSSVH .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dgpMijn .axis-tooltip-text-x {\n", + "#dwxKScp .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pmFPsu3 .axis-title-y {\n", + "#pmTSSVH .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pmFPsu3 .axis-text-y {\n", + "#pmTSSVH .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dgpMijn .axis-tooltip-text-y {\n", + "#dwxKScp .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pmFPsu3 .facet-strip-text-x {\n", + "#pmTSSVH .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pmFPsu3 .facet-strip-text-y {\n", + "#pmTSSVH .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dgpMijn .tooltip-text {\n", + "#dwxKScp .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dgpMijn .tooltip-title {\n", + "#dwxKScp .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dgpMijn .tooltip-label {\n", + "#dwxKScp .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -32321,7 +32607,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32369,7 +32655,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32397,7 +32683,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32569,7 +32855,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32584,117 +32870,117 @@ "text {\n", " text-rendering: optimizeLegibility;\n", "}\n", - "#pG5wdY4 .plot-title {\n", + "#pjlZEZj .plot-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 16.0px;\n", "\n", "}\n", - "#pG5wdY4 .plot-subtitle {\n", + "#pjlZEZj .plot-subtitle {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pG5wdY4 .plot-caption {\n", + "#pjlZEZj .plot-caption {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pG5wdY4 .hyperlink-element {\n", + "#pjlZEZj .hyperlink-element {\n", "fill: #118ed8;\n", "font-weight: normal;\n", " font-style: normal;\n", "}\n", - "#pG5wdY4 .legend-title {\n", + "#pjlZEZj .legend-title {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pG5wdY4 .legend-item {\n", + "#pjlZEZj .legend-item {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pG5wdY4 .axis-title-x {\n", + "#pjlZEZj .axis-title-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pG5wdY4 .axis-text-x {\n", + "#pjlZEZj .axis-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dScVEAq .axis-tooltip-text-x {\n", + "#dMZZAfc .axis-tooltip-text-x {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pG5wdY4 .axis-title-y {\n", + "#pjlZEZj .axis-title-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 15.0px;\n", "\n", "}\n", - "#pG5wdY4 .axis-text-y {\n", + "#pjlZEZj .axis-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dScVEAq .axis-tooltip-text-y {\n", + "#dMZZAfc .axis-tooltip-text-y {\n", "fill: #ffffff;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pG5wdY4 .facet-strip-text-x {\n", + "#pjlZEZj .facet-strip-text-x {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#pG5wdY4 .facet-strip-text-y {\n", + "#pjlZEZj .facet-strip-text-y {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dScVEAq .tooltip-text {\n", + "#dMZZAfc .tooltip-text {\n", "fill: #474747;\n", "font-weight: normal;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dScVEAq .tooltip-title {\n", + "#dMZZAfc .tooltip-title {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", "font-size: 13.0px;\n", "\n", "}\n", - "#dScVEAq .tooltip-label {\n", + "#dMZZAfc .tooltip-label {\n", "fill: #474747;\n", "font-weight: bold;\n", " font-style: normal;font-family: sans-serif;\n", @@ -32703,7 +32989,7 @@ "}\n", "\n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32749,7 +33035,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32777,7 +33063,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -32942,11 +33228,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -33162,14 +33448,18 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:08.502080Z", - "start_time": "2025-12-09T10:17:08.341869Z" + "end_time": "2025-12-19T15:15:46.543593293Z", + "start_time": "2025-12-19T15:15:45.655559897Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_122_jupyter", + "Line_123_jupyter", + "Line_124_jupyter" + ] } }, - "source": [ - "@OptIn(ExperimentalTime::class)\n", - "val dfInstants = df.convert { date_added }.with { it.atStartOfDayIn(TimeZone.UTC) }" - ], + "source": "val dfInstants = df.convert { date_added }.with { it.atStartOfDayIn(TimeZone.UTC) }", "outputs": [], "execution_count": 51 }, @@ -33177,8 +33467,13 @@ "cell_type": "code", "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:08.595951Z", - "start_time": "2025-12-09T10:17:08.509679Z" + "end_time": "2025-12-19T15:15:48.505506213Z", + "start_time": "2025-12-19T15:15:46.861999560Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_125_jupyter" + ] } }, "source": [ @@ -33206,7 +33501,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="DxYvMX"></div>\n", + " <div id="mo3RCy"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -33231,7 +33526,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("DxYvMX");\n", + " const containerDiv = document.getElementById("mo3RCy");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -33329,7 +33624,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -33516,7 +33811,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -33552,7 +33847,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -33760,10 +34055,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -33870,8 +34165,13 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:08.768025Z", - "start_time": "2025-12-09T10:17:08.680168Z" + "end_time": "2025-12-19T15:15:50.127090988Z", + "start_time": "2025-12-19T15:15:48.599371193Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_126_jupyter" + ] } }, "cell_type": "code", @@ -33898,7 +34198,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="GVswRv"></div>\n", + " <div id="TPrMxv"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -33923,7 +34223,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("GVswRv");\n", + " const containerDiv = document.getElementById("TPrMxv");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -34024,7 +34324,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -34217,7 +34517,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -34271,7 +34571,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -34543,10 +34843,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -34707,8 +35007,15 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:09.278657Z", - "start_time": "2025-12-09T10:17:08.866931Z" + "end_time": "2025-12-19T15:15:59.635529813Z", + "start_time": "2025-12-19T15:15:50.217887569Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_127_jupyter", + "Line_128_jupyter", + "Line_129_jupyter" + ] } }, "cell_type": "code", @@ -34722,8 +35029,18 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:11.588186Z", - "start_time": "2025-12-09T10:17:09.282679Z" + "end_time": "2025-12-19T15:16:10.220003424Z", + "start_time": "2025-12-19T15:16:00.044133609Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_130_jupyter", + "Line_131_jupyter", + "Line_132_jupyter", + "Line_133_jupyter", + "Line_134_jupyter", + "Line_135_jupyter" + ] } }, "cell_type": "code", @@ -34733,22 +35050,23 @@ " GeoDataFrame.readShapefile(url)\n", "}" ], - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2025-12-09T10:17:09.847283Z Execution of code 'val worldGeo = with(...' ERROR Log4j API could not find a logging provider.\n" - ] - } - ], + "outputs": [], "execution_count": 55 }, { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:11.842148Z", - "start_time": "2025-12-09T10:17:11.594602Z" + "end_time": "2025-12-19T15:16:13.908734673Z", + "start_time": "2025-12-19T15:16:10.484046444Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_136_jupyter", + "Line_137_jupyter", + "Line_138_jupyter", + "Line_139_jupyter", + "Line_140_jupyter" + ] } }, "cell_type": "code", @@ -34943,7 +35261,7 @@ " </style>\n", " </head>\n", " <body>\n", - " <table class="dataframe" id="df_-1023409944"></table>\n", + " <table class="dataframe" id="df_436207848"></table>\n", "\n", "<p class="dataframe_description">... showing only top 20 of 63 rows</p><p class="dataframe_description">DataFrame: rowsCount = 63, columnsCount = 11</p>\n", "\n", @@ -35228,17 +35546,17 @@ "{ name: "<span title=\"continent: String\">continent</span>", children: [], rightAlign: false, values: ["North America","North America","Asia","South America","South America","Africa","Europe","Africa","North America","South America","South America","South America","South America","North America","South America","Africa","Africa","Africa","Africa","Africa"] }, \n", "{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Canada","United States of America","Indonesia","Argentina","Chile","Kenya","Russia","South Africa","Mexico","Uruguay","Brazil","Peru","Colombia","Guatemala","Venezuela","Zimbabwe","Namibia","Senegal","Nigeria","Ghana"] }, \n", "{ name: "<span title=\"iso_a3: String\">iso_a3</span>", children: [], rightAlign: false, values: ["CAN","USA","IDN","ARG","CHL","KEN","RUS","ZAF","MEX","URY","BRA","PER","COL","GTM","VEN","ZWE","NAM","SEN","NGA","GHA"] }, \n", - "{ name: "<span title=\"gdp_md_est: Double\">gdp_md_est</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1674000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">18560000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3028000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">879400,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">436100,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">152700,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3745000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">739100,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2307000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">73250,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3081000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">410400,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">688000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">131800,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">468600,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">28330,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">25990,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">39720,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1089000,0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120800,0</span></span>"] }, \n", + "{ name: "<span title=\"gdp_md_est: Double\">gdp_md_est</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1674000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">18560000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3028000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">879400.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">436100.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">152700.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3745000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">739100.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2307000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">73250.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3081000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">410400.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">688000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">131800.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">468600.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">28330.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">25990.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">39720.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1089000.0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120800.0</span></span>"] }, \n", "{ name: "<span title=\"geometry: org.locationtech.jts.geom.MultiPolygon\">geometry</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"MULTIPOLYGON (((-122.84000000000003 49.000000000000114, -122.97421000000001 49.00253777777778, -124.91024 49.98456, -125.62461 50.416560000000004, -127.43561000000001 50.83061, -127.99276 51.71583, -127.85032 52.32961, -129.12979 52.75538, -129.30523 53.561589999999995, -130.51497 54.28757, -130.53610895273684 54.80275447679924, -130.53611 54.802780000000006, -129.98 55.285000000000004, -130.00778000000003 55.915830000000085, -131.70781 56.55212, -132.73042 57.692890000000006, -133.35556000000003 58.41028000000001, -134.27111000000002 58.86111000000005, -134.94500000000005 59.2705600000001, -135.47583 59.787780000000005, -136.47972000000004 59.46389000000005, -137.4525 58.905, -138.34089 59.562110000000004, -139.03900000000002 60, -140.013 60.27682000000001, -140.99778 60.30639000000001, -140.9925 66.00003000000001, -140.986 69.712, -140.98598761037601 69.71199839952635, -139.12052 69.47102, -137.54636000000002 68.99002, -136.50358 68.89804, -135.62576 69.31512000000001, -134.41464000000002 69.62743, -132.92925000000002 69.50534, -131.43135999999998 69.94451, -129.79471 70.19369, -129.10773 69.77927000000001, -128.36156 70.01286, -128.13817 70.48384, -127.44712000000001 70.37721, -125.75632000000002 69.48058, -124.42483 70.1584, -124.28968 69.39968999999999, -123.06108 69.56372, -122.6835 69.85553, -121.47226 69.79778, -119.94288 69.37786, -117.60268 69.01128, -116.22643 68.84151, -115.24690000000001 68.90591, -113.89793999999999 68.3989, -115.30489 67.90261000000001, -113.49727 67.68815000000001, -110.798 67.80611999999999, -109.94619 67.98104000000001, -108.8802 67.38144, -107.79239 67.88736, -108.81299 68.31164, -108.16721000000001 68.65392, -106.95 68.7, -106.15 68.8, -105.34282000000002 68.56122, -104.33791000000001 68.018, -103.22115000000001 68.09775, -101.45433 67.64689, -99.90195 67.80566, -98.4432 67.78165, -98.5586 68.40394, -97.66948000000001 68.57864000000001, -96.11991 68.23939, -96.12588 67.29338, -95.48943 68.0907, -94.685 68.06383, -94.23282000000002 69.06903000000001, -95.30408 69.68571, -96.47131 70.08976, -96.39115 71.19482, -95.2088 71.92053, -93.88997 71.76015, -92.87818 71.31869, -91.51964000000001 70.19129000000001, -92.40692000000001 69.69997000000001, -90.5471 69.49766, -90.55151000000001 68.47499, -89.21515 69.25873, -88.01966 68.61508, -88.31748999999999 67.87338000000001, -87.35017 67.19872, -86.30606999999999 67.92146, -85.57664 68.78456, -85.52197 69.88211, -84.10081000000001 69.80539, -82.62258 69.65826, -81.28043000000001 69.16202000000001, -81.22019999999999 68.66567, -81.96436000000001 68.13253, -81.25928 67.59716, -81.38653000000001 67.11078, -83.34456 66.41154, -84.73542 66.2573, -85.76943 66.55833, -86.06760000000001 66.05625, -87.03143 65.21297, -87.32324 64.77563, -88.48296 64.09897000000001, -89.91444 64.03273, -90.70398 63.610170000000004, -90.77004000000001 62.960210000000004, -91.93342 62.83508, -93.15698 62.02469000000001, -94.24153 60.89865, -94.62930999999999 60.11021, -94.6846 58.94882, -93.21502000000001 58.78212, -92.76462000000001 57.84571, -92.29702999999999 57.08709, -90.89769 57.28468, -89.03953 56.85172, -88.03978000000001 56.47162, -87.32421 55.999140000000004, -86.07121 55.72383, -85.01181000000001 55.302600000000005, -83.36055 55.24489, -82.27285 55.14832, -82.43620000000001 54.282270000000004, -82.12502 53.27703, -81.40075 52.157880000000006, -79.91289 51.208420000000004, -79.14301 51.533930000000005, -78.60191 52.56208, -79.12421 54.14145, -79.82958 54.66772, -78.22874 55.136449999999996, -77.0956 55.83741, -76.54137 56.53423000000001, -76.62319000000001 57.20263, -77.30226 58.05209, -78.51688 58.80458, -77.33676 59.852610000000006, -77.77272 60.75788000000001, -78.10687 62.31964000000001, -77.41067 62.55053, -75.69621000000001 62.2784, -74.6682 62.181110000000004, -73.83988000000001 62.4438, -72.90853 62.10507, -71.67708 61.52535, -71.37369000000001 61.137170000000005, -69.59042 61.06141, -69.62033 60.221250000000005, -69.28790000000001 58.95736, -68.37455 58.80106, -67.64976 58.21206, -66.20178 58.76731, -65.24517 59.87071, -64.58352000000001 60.33558, -63.804750000000006 59.442600000000006, -62.502359999999996 58.16708, -61.396550000000005 56.96745000000001, -61.798660000000005 56.33945, -60.46853 55.775479999999995, -59.56962 55.20407, -57.97508 54.94549000000001, -57.3332 54.6265, -56.93689 53.780319999999996, -56.15811 53.647490000000005, -55.75632 53.27036, -55.68338 52.146640000000005, -56.40916000000001 51.770700000000005, -57.12691 51.419720000000005, -58.77482 51.0643, -60.03309000000001 50.24277, -61.72366 50.08046, -63.86251 50.29099, -65.36331 50.2982, -66.39905 50.228970000000004, -67.23631 49.511559999999996, -68.51114 49.068360000000006, -69.95362 47.74488, -71.10458 46.82171, -70.25522 46.986059999999995, -68.65 48.3, -66.55243 49.1331, -65.05626 49.232780000000005, -64.17099 48.74248, -65.11545000000001 48.07085, -64.79854 46.99297, -64.47219 46.238490000000006, -63.17329000000001 45.73902, -61.520720000000004 45.883770000000005, -60.518150000000006 47.00793, -60.448600000000006 46.28264, -59.80287 45.9204, -61.03988 45.265249999999995, -63.254709999999996 44.67014, -64.24656 44.265530000000005, -65.36406000000001 43.54523, -66.1234 43.61867, -66.16173 44.46512, -64.42549 45.29204, -66.02605000000001 45.25931, -67.13741 45.13753, -67.79134 45.70281000000001, -67.79046000000001 47.066359999999996, -68.23444 47.354859999999974, -68.90500000000003 47.18500000000006, -69.237216 47.447781, -69.99997 46.69307, -70.305 45.915, -70.66 45.46, -71.08482000000004 45.30524000000014, -71.405 45.254999999999995, -71.50506 45.0082, -73.34783 45.00738, -74.86700000000002 45.000480000000096, -75.31821000000001 44.81645, -76.375 44.09631, -76.50000000000001 44.01845889375865, -76.82003414580558 43.628784288093755, -77.7378850979577 43.62905558936328, -78.72027991404235 43.62508942318493, -79.17167355011186 43.46633942318426, -79.01 43.27, -78.92 42.964999999999996, -78.93936214874375 42.86361135514798, -80.24744767934794 42.36619985612255, -81.27774654816716 42.209025987306816, -82.4392777167916 41.675105088867326, -82.69008928092023 41.675105088867326, -83.029810146807 41.83279572200598, -83.14199968131264 41.975681057292874, -83.12 42.08, -82.9 42.43, -82.42999999999999 42.980000000000004, -82.13764238150395 43.57108755143997, -82.33776312543114 44.440000000000055, -82.55092464875821 45.34751658790543, -83.59285071484311 45.81689362241252, -83.46955074739469 45.994686387712534, -83.61613094759059 46.116926988299014, -83.89076534700574 46.116926988299014, -84.0918512641615 46.27541860613826, -84.1421195136734 46.51222585711571, -84.33670000000001 46.408770000000004, -84.60490000000004 46.439599999999984, -84.54374874544584 46.538684190449146, -84.77923824739992 46.63710195574902, -84.8760798815149 46.90008331968238, -85.65236324740341 47.22021881773051, -86.46199083122826 47.553338019392, -87.43979262330028 47.94, -88.37811418328671 48.302917588893706, -89.27291744663665 48.01980825458281, -89.60000000000002 48.010000000000105, -90.83 48.27, -91.64 48.14, -92.61000000000001 48.44999999999993, -93.63087000000002 48.609260000000006, -94.32914000000001 48.67074, -94.64 48.84, -94.81758000000002 49.38905, -95.15609 49.38425000000001, -95.15906950917206 49, -97.2287200000048 49.0007, -100.65000000000003 49.000000000000114, -104.04826000000003 48.99986000000007, -107.05000000000001 49, -110.05000000000001 49, -113 49, -116.04818 49, -117.03121 49, -120 49.000000000000114, -122.84000000000003 49.000000000000114)), ((-83.99367000000001 62.452799999999996, -83.25048 62.91409, -81.87699 62.90458, -81.89825 62.7108, -83.06857000000001 62.159220000000005, -83.77462000000001 62.18231, -83.99367000000001 62.452799999999996)), ((-79.77583312988281 72.8029022216797, -80.87609863281251 73.33318328857422, -80.83388519287111 73.69318389892578, -80.35305786132812 73.75971984863281, -78.06443786621094 73.65193176269531, -76.34 73.10268498995305, -76.25140380859375 72.82638549804688, -77.31443786621094 72.85554504394531, -78.39167022705078 72.87665557861328, -79.4862518310547 72.74220275878906, -79.77583312988281 72.8029022216797)), ((-80.315395 62.08556500000001, -79.92939 62.3856, -79.52002 62.363710000000005, -79.26582 62.158674999999995, -79.65752 61.63308, -80.09956000000001 61.71810000000001, -80.36215 62.016490000000005, -80.315395 62.08556500000001)), ((-93.61275590694046 74.97999726022438, -94.15690873897391 74.59234650338688, -95.60868058956564 74.66686391875176, -96.82093217648455 74.92762319609658, -96.28858740922982 75.37782827422338, -94.85081987178917 75.64721751576089, -93.97774654821797 75.29648956979595, -93.61275590694046 74.97999726022438)), ((-93.84000301794399 77.51999726023455, -94.29560828324529 77.49134267852868, -96.16965410031007 77.55511139597685, -96.43630449093614 77.83462921824362, -94.42257727738641 77.820004787905, -93.7206562975659 77.63433136668031, -93.84000301794399 77.51999726023455)), ((-96.75439876990876 78.76581268992702, -95.5592779202946 78.41831452098033, -95.83029496944934 78.05694122996324, -97.30984290239799 77.85059723582181, -98.12428931353404 78.08285696075761, -98.55286780474668 78.45810537384507, -98.63198442258553 78.87193024363837, -97.33723141151266 78.83198436147676, -96.75439876990876 78.76581268992702)), ((-88.15035030796028 74.39230703398503, -89.7647220527584 74.51555532500116, -92.42244096552946 74.83775788034099, -92.76828548864282 75.38681997344214, -92.88990597204175 75.88265534128267, -93.89382402217599 76.31924367950056, -95.9624574450358 76.4413809272224, -97.1213789538295 76.7510777859476, -96.74512285031237 77.16138865834507, -94.68408586299944 77.09787832305837, -93.57392106807313 76.77629588490605, -91.6050231595366 76.7785179714946, -90.7418458727493 76.44959747995681, -90.96966142450802 76.07401317005947, -89.82223792189926 75.84777374948565, -89.18708289259985 75.61016551380762, -87.83827633334965 75.56618886992725, -86.37919226758864 75.4824213731821, -84.78962521029058 75.69920400664653, -82.75344458691006 75.78431509063124, -81.12853084992436 75.71398346628199, -80.05751095245915 75.33684886341591, -79.83393286814837 74.92312734648716, -80.45777075877587 74.65730377877777, -81.94884253612557 74.44245901152432, -83.22889360221143 74.56402781849094, -86.09745235873332 74.41003205026117, -88.15035030796028 74.39230703398503)), ((-111.26444332563088 78.15295604116154, -109.85445187054711 77.99632477488488, -110.18693803591302 77.69701487905034, -112.0511911690585 77.4092288276169, -113.53427893761912 77.73220652944111, -112.7245867582539 78.05105011668196, -111.26444332563088 78.15295604116154)), ((-110.96366065147602 78.8044408230652, -109.6631457182026 78.60197256134565, -110.88131425661892 78.40691986765997, -112.54209143761516 78.4079017198735, -112.52589087609164 78.55055451121522, -111.5000103422334 78.8499935981305, -110.96366065147602 78.8044408230652)), ((-55.600218268442056 51.31707469339794, -56.13403581401709 50.68700979267928, -56.795881720595276 49.81230866149089, -56.14310502788433 50.15011749938286, -55.471492275603 49.93581533466846, -55.82240108908096 49.58712860777905, -54.935142584845636 49.3130109726868, -54.473775397343786 49.556691189159125, -53.47654944519137 49.24913890237404, -53.786013759971254 48.516780503933624, -53.08613399922626 48.68780365660358, -52.958648240762216 48.15716421161447, -52.64809872090421 47.53554840757552, -53.069158291218386 46.65549876564492, -53.521456264853 46.61829173439477, -54.17893551290251 46.80706574155698, -53.9618686590605 47.62520701760193, -54.24048214376214 47.752279364607645, -55.40077307801157 46.884993801453135, -55.99748084168583 46.919720363953275, -55.29121904155279 47.38956248635099, -56.250798712780586 47.632545070987376, -57.32522925477708 47.57280711525797, -59.26601518414682 47.60334788674247, -59.419494188053676 47.899453843774886, -58.79658647320744 48.25152537697942, -59.23162451845657 48.52318838153781, -58.3918049790652 49.12558055276418, -57.35868974468606 50.71827403421587, -56.738650071832026 51.28743825947855, -55.87097693543532 51.63209422464921, -55.40697424988659 51.5882726100657, -55.600218268442056 51.31707469339794)), ((-83.88262630891977 65.10961782496354, -82.78757687043883 64.76669302027467, -81.6420137193926 64.45513580998697, -81.55344031444432 63.97960928003714, -80.81736121287886 64.057485663501, -80.10345130076664 63.72598135034862, -80.99101986359572 63.41124603947496, -82.54717810741704 63.65172231714521, -83.10879757356511 64.10187571883971, -84.10041663281388 63.569711819098, -85.52340471061905 63.052379055424055, -85.8667687649824 63.63725291610349, -87.22198320183678 63.54123810490519, -86.35275977247133 64.0358332383707, -86.2248864407651 64.82291697860823, -85.88384782585486 65.7387783881171, -85.1613079495499 65.6572846543928, -84.97576371940592 65.21751821558898, -84.4640120104195 65.37177236598022, -83.88262630891977 65.10961782496354)), ((-78.77063859731078 72.35217316353418, -77.8246239895596 72.74961660429098, -75.60584469267573 72.2436784939374, -74.228616095665 71.76714427355789, -74.09914079455771 71.33084015571758, -72.24222571479768 71.55692454699452, -71.20001542833518 70.92001251899718, -68.7860542466849 70.52502370877427, -67.91497046575694 70.12194753689765, -66.9690333726542 69.18608734809182, -68.8051228502006 68.72019847276444, -66.4498660956339 68.06716339789203, -64.86231441919524 67.84753856065159, -63.424934454996794 66.92847321234059, -61.851981370680605 66.86212067327783, -62.16317684594226 66.16025136988962, -63.918444383384184 64.9986685248329, -65.14886023625368 65.42603261988667, -66.72121904159852 66.38804108343219, -68.015016038674 66.26272573512439, -68.1412874009792 65.68978913030439, -67.08964616562342 65.10845510523696, -65.73208045109976 64.64840566675856, -65.32016760930125 64.38273712834605, -64.66940629744968 63.392926744227495, -65.01380388045888 62.67418508569598, -66.27504472519048 62.94509878198612, -68.7831862046927 63.74567007105183, -67.36968075221309 62.88396556258484, -66.32829728866726 62.28007477482201, -66.16556820338015 61.93089712182582, -68.87736650254465 62.330149237712824, -71.02343705919385 62.91070811629588, -72.23537858751902 63.39783600529522, -71.88627844917127 63.67998932560887, -73.37830624051838 64.19396312118384, -74.83441891142263 64.6790756293238, -74.81850257027673 64.38909332951793, -77.70997982452008 64.22954234481678, -78.5559488593542 64.57290639918013, -77.89728105336198 65.30919220647475, -76.01827429879717 65.32696889918314, -73.95979529488268 65.45476471624094, -74.29388342964964 65.81177134872938, -73.94491248238262 66.31057811142666, -72.65116716173942 67.28457550726391, -72.92605994331605 67.72692576768235, -73.31161780464572 68.06943716091287, -74.84330725777684 68.55462718370127, -76.86910091826672 68.89473562283025, -76.22864905465738 69.14776927354741, -77.28736996123715 69.76954010688321, -78.1686339993266 69.82648753526887, -78.95724219431673 70.16688019477543, -79.49245500356366 69.87180776638884, -81.30547095409176 69.74318512641436, -84.94470618359851 69.96663401964442, -87.06000342481789 70.26000112576538, -88.68171322300148 70.4107412787608, -89.51341956252303 70.76203766548095, -88.46772111688082 71.21818553332132, -89.88815121128755 71.22255219184997, -90.20516028518205 72.23507436796079, -89.436576707705 73.12946421985238, -88.40824154331287 73.53788890247121, -85.82615108920098 73.80381582304518, -86.56217851433412 73.15744700793844, -85.77437130404454 72.53412588163387, -84.85011247428822 73.34027822538708, -82.31559017610101 73.7509508328106, -80.60008765330768 72.71654368762417, -80.74894161652443 72.06190664335072, -78.77063859731078 72.35217316353418)), ((-94.50365759965237 74.13490672473922, -92.42001217321173 74.1000251329422, -90.50979285354263 73.85673248971206, -92.00396521682987 72.96624420845852, -93.19629553910026 72.77199249947334, -94.26904659704726 72.02459625923599, -95.40985551632266 72.06188080513458, -96.03374508338244 72.94027680123183, -96.01826799191102 73.43742991809582, -95.49579342322404 73.86241689726417, -94.50365759965237 74.13490672473922)), ((-122.85492448615902 76.11654287383568, -122.85492529360326 76.11654287383568, -121.15753536032824 76.86450755482828, -119.1039389718211 77.51221995717462, -117.570130784966 77.4983189968881, -116.19858659550738 77.6452867703262, -116.33581336145845 76.87696157501061, -117.10605058476882 76.53003184681911, -118.04041215703819 76.48117178008714, -119.89931758688572 76.053213406062, -121.49999507712648 75.90001862253276, -122.85492448615902 76.11654287383568)), ((-132.71000788443126 54.04000931542356, -131.74998958400334 54.12000438090922, -132.049480347351 52.98462148702447, -131.1790425218266 52.180432847698285, -131.57782954982298 52.18237071390928, -132.18042842677852 52.639707139692405, -132.54999243231384 53.100014960332146, -133.05461117875552 53.411468817755406, -133.2396644827927 53.851080227262344, -133.1800040417117 54.169975490935315, -132.71000788443126 54.04000931542356)), ((-105.4922891914932 79.30159393992916, -103.52928239623795 79.16534902619163, -100.8251580472688 78.80046173777872, -100.0601918200522 78.32475434031589, -99.67093909381364 77.90754466420744, -101.30394019245301 78.01898489044486, -102.94980872273302 78.34322866486023, -105.17613277873151 78.3803323432458, -104.21042945027713 78.67742015249176, -105.41958045125853 78.91833567983649, -105.4922891914932 79.30159393992916)), ((-123.51000158755119 48.51001089130341, -124.01289078839955 48.37084625914139, -125.65501277733838 48.8250045843385, -125.95499446679275 49.17999583596759, -126.85000443587185 49.53000031188043, -127.02999344954443 49.81499583597008, -128.0593363043662 49.9949590114266, -128.44458410710214 50.539137681676095, -128.35841365625546 50.77064809834371, -127.30858109602994 50.552573554071955, -126.69500097721235 50.400903225295394, -125.7550066738232 50.29501821552935, -125.4150015875588 49.95000051533259, -124.92076818911934 49.475274970083376, -123.92250870832106 49.06248362893581, -123.51000158755119 48.51001089130341)), ((-121.53787999999997 74.44893000000002, -120.10978 74.24135000000001, -117.55563999999993 74.18576999999993, -116.58442000000002 73.89607000000007, -115.51080999999999 73.47519, -116.76793999999995 73.22291999999999, -119.22000000000003 72.51999999999998, -120.45999999999998 71.82000000000005, -120.45999999999998 71.38360179308756, -123.09218999999996 70.90164000000004, -123.62 71.34000000000009, -125.92894873747338 71.86868846301138, -125.49999999999994 72.29226081179502, -124.80729000000002 73.02255999999994, -123.93999999999994 73.68000000000012, -124.91774999999996 74.29275000000013, -121.53787999999997 74.44893000000002)), ((-107.81943000000001 75.84552000000001, -106.92893000000001 76.01282, -105.881 75.96940000000001, -105.70498 75.47951, -106.31347000000001 75.00527, -109.70000000000002 74.85000000000001, -112.22306999999999 74.41696, -113.74381 74.39427, -113.87135 74.72029, -111.79420999999999 75.16250000000001, -116.31221 75.04343, -117.7104 75.2222, -116.34602000000001 76.19903000000001, -115.40487 76.47887, -112.59056000000001 76.14134, -110.81422 75.54919, -109.06710000000001 75.47321000000001, -110.49726000000001 76.42982, -109.58109999999999 76.79417, -108.54858999999999 76.67832000000001, -108.21141 76.20168000000001, -107.81943000000001 75.84552000000001)), ((-106.52258999999992 73.07601, -105.40245999999996 72.67259000000007, -104.77484000000004 71.6984000000001, -104.4647599999999 70.99297000000007, -102.78537 70.49776000000003, -100.98077999999992 70.02431999999999, -101.08928999999995 69.58447000000012, -102.73115999999993 69.50402000000003, -102.09329000000002 69.11962000000011, -102.43024000000003 68.75281999999999, -104.24000000000001 68.91000000000008, -105.96000000000004 69.18000000000012, -107.12254000000001 69.11922000000004, -108.99999999999994 68.78000000000003, -111.53414887520017 68.63005915681794, -113.31320000000005 68.53553999999997, -113.85495999999989 69.00744000000009, -115.22000000000003 69.28000000000009, -116.10793999999999 69.16821000000004, -117.34000000000003 69.9600000000001, -116.67472999999995 70.06655, -115.13112000000001 70.23730000000006, -113.72140999999999 70.1923700000001, -112.41610000000003 70.36637999999999, -114.35000000000002 70.60000000000002, -116.48684000000003 70.52044999999998, -117.90480000000002 70.54056000000014, -118.43238000000002 70.90920000000006, -116.11311 71.30917999999997, -117.65567999999996 71.29520000000002, -119.40199000000001 71.55858999999998, -118.56266999999997 72.30785000000003, -117.86641999999995 72.70594000000006, -115.18909000000002 73.31459000000012, -114.16716999999994 73.1214500000001, -114.66633999999999 72.65277000000009, -112.44101999999992 72.95540000000011, -111.05039 72.45040000000006, -109.92034999999993 72.96113000000008, -109.00653999999997 72.63335000000001, -108.18834999999996 71.65089, -107.68599 72.0654800000001, -108.39639 73.08953000000008, -107.51645000000002 73.23597999999998, -106.52258999999992 73.07601)), ((-100.43836 72.70588000000001, -101.54 73.36, -100.35642000000001 73.84389, -99.16387 73.63339, -97.38 73.76, -97.12 73.47, -98.05359 72.99052, -96.54 72.56, -96.72000000000001 71.66, -98.35966 71.27284999999999, -99.32286 71.35639, -100.01482 71.73827, -102.5 72.51, -102.48000000000002 72.83000000000001, -100.43836 72.70588000000001)), ((-106.6 73.60000000000001, -105.26 73.64, -104.5 73.42, -105.38000000000001 72.76, -106.94 73.46000000000001, -106.6 73.60000000000001)), ((-98.50000000000001 76.72, -97.735585 76.25656000000001, -97.70441500000001 75.74344, -98.16000000000001 75, -99.80874 74.89744, -100.88365999999999 75.05736, -100.86292000000002 75.64075, -102.50209 75.5638, -102.56552 76.3366, -101.48973 76.30537, -99.98349 76.64634, -98.57699 76.58859, -98.50000000000001 76.72)), ((-96.01644 80.60233000000001, -95.32345000000001 80.90729, -94.29843 80.97727, -94.73542 81.20646000000002, -92.40983999999999 81.25739000000003, -91.13288999999999 80.72345000000003, -89.45000000000002 80.50932203389831, -87.81 80.32000000000001, -87.02000000000001 79.66000000000001, -85.81435 79.3369, -87.18755999999999 79.0393, -89.03535000000001 78.28723, -90.80436 78.21533000000001, -92.87669000000001 78.34333000000001, -93.95116000000002 78.75099, -93.93574 79.11373, -93.14524 79.3801, -94.974 79.37248, -96.07614000000001 79.70502, -96.70972 80.15777, -96.01644 80.60233000000001)), ((-91.58702000000001 81.89429000000001, -90.10000000000001 82.08500000000004, -88.93227 82.11751000000001, -86.97024 82.27961, -85.5 82.65227345805702, -84.260005 82.60000000000001, -83.18 82.32, -82.42 82.86000000000001, -81.1 83.02, -79.30664 83.13056, -76.25 83.17205882352941, -75.71878000000001 83.06404000000002, -72.83153 83.23324000000001, -70.66576500000001 83.16978075838284, -68.50000000000001 83.10632151676572, -65.82735 83.02801000000001, -63.68 82.9, -61.85 82.62860000000002, -61.89388 82.36165000000001, -64.334 81.92775000000002, -66.75342 81.72527000000001, -67.65755 81.50141, -65.48031 81.50657000000002, -67.84 80.90000000000003, -69.4697 80.61683000000001, -71.18 79.8, -73.2428 79.63415, -73.88000000000001 79.43016220480206, -76.90773 79.32309000000001, -75.52924 79.19766000000001, -76.22046 79.01907, -75.39345 78.52581, -76.34354 78.18296000000001, -77.88851000000001 77.89991, -78.36269 77.50859000000001, -79.75951 77.20967999999999, -79.61965000000001 76.98336, -77.91089000000001 77.022045, -77.88911 76.777955, -80.56125 76.17812, -83.17439 76.45403, -86.11184 76.29901000000001, -87.60000000000001 76.42, -89.49068 76.47239, -89.6161 76.95213000000001, -87.76739 77.17833, -88.26 77.9, -87.65 77.97022222222223, -84.97634 77.53873, -86.34 78.18, -87.96191999999999 78.37181, -87.15198000000001 78.75867, -85.37868 78.99690000000001, -85.09495 79.34543000000001, -86.50734 79.73624, -86.93179 80.25145, -84.19844 80.20836, -83.40869565217389 80.10000000000001, -81.84823 80.46442, -84.1 80.58, -87.59895 80.51627, -89.36663 80.85569000000001, -90.2 81.26, -91.36786000000001 81.5531, -91.58702000000001 81.89429000000001)), ((-75.21597 67.44425, -75.86588 67.14886, -76.98687 67.09873, -77.2364 67.58809000000001, -76.81166 68.14856, -75.89521 68.28721, -75.11449999999999 68.01035999999999, -75.10333 67.58202, -75.21597 67.44425)), ((-96.25740120380055 69.49003035832177, -95.64768120380054 69.10769035832178, -96.26952120380055 68.75704035832177, -97.61740120380055 69.06003035832177, -98.43180120380055 68.95070035832177, -99.79740120380055 69.40003035832177, -98.91740120380055 69.71003035832177, -98.21826120380055 70.14354035832177, -97.15740120380055 69.86003035832177, -96.55740120380055 69.68003035832177, -96.25740120380055 69.49003035832177)), ((-64.51912 49.87304, -64.17322 49.95718, -62.858290000000004 49.70641, -61.835584999999995 49.28855, -61.806304999999995 49.10506000000001, -62.29318 49.08717, -63.589259999999996 49.400690000000004, -64.51912 49.87304)), ((-64.01486 47.03601, -63.6645 46.55001, -62.9393 46.41587, -62.012080000000005 46.44314, -62.503910000000005 46.033390000000004, -62.87433 45.968180000000004, -64.14280000000001 46.39265, -64.39261 46.72747, -64.01486 47.03601)))\">MULTIPOLYGON (((-122.84000000000003 4<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-122.84000000000003 49.000000000000114, -120 49.000000000000114, -117.03121 49, -116.04818 49, -113 49, -110.05000000000001 49, -107.05000000000001 49, -104.04826000000003 48.99986000000007, -100.65000000000003 49.000000000000114, -97.2287200000048 49.0007, -95.15906950917206 49, -95.15609 49.38425000000001, -94.81758000000002 49.38905, -94.64 48.84, -94.32914000000001 48.67074, -93.63087000000002 48.609260000000006, -92.61000000000001 48.44999999999993, -91.64 48.14, -90.83 48.27, -89.60000000000002 48.010000000000105, -89.27291744663665 48.01980825458281, -88.37811418328671 48.302917588893706, -87.43979262330028 47.94, -86.46199083122826 47.553338019392, -85.65236324740341 47.22021881773051, -84.8760798815149 46.90008331968238, -84.77923824739992 46.63710195574902, -84.54374874544584 46.538684190449146, -84.60490000000004 46.439599999999984, -84.33670000000001 46.408770000000004, -84.1421195136734 46.51222585711571, -84.0918512641615 46.27541860613826, -83.89076534700574 46.116926988299014, -83.61613094759059 46.116926988299014, -83.46955074739469 45.994686387712534, -83.59285071484311 45.81689362241252, -82.55092464875821 45.34751658790543, -82.33776312543114 44.440000000000055, -82.13764238150395 43.57108755143997, -82.42999999999999 42.980000000000004, -82.9 42.43, -83.12 42.08, -83.14199968131264 41.975681057292874, -83.029810146807 41.83279572200598, -82.69008928092023 41.675105088867326, -82.4392777167916 41.675105088867326, -81.27774654816716 42.209025987306816, -80.24744767934794 42.36619985612255, -78.93936214874375 42.86361135514798, -78.92 42.964999999999996, -79.01 43.27, -79.17167355011186 43.46633942318426, -78.72027991404235 43.62508942318493, -77.7378850979577 43.62905558936328, -76.82003414580558 43.628784288093755, -76.50000000000001 44.01845889375865, -76.375 44.09631, -75.31821000000001 44.81645, -74.86700000000002 45.000480000000096, -73.34783 45.00738, -71.50506 45.0082, -71.405 45.254999999999995, -71.08482000000004 45.30524000000014, -70.66 45.46, -70.305 45.915, -69.99997 46.69307, -69.237216 47.447781, -68.90500000000003 47.18500000000006, -68.23444 47.354859999999974, -67.79046000000001 47.066359999999996, -67.79134 45.70281000000001, -67.13741 45.13753, -66.96465999999998 44.809700000000134, -68.03251999999998 44.325199999999995, -69.05999999999995 43.980000000000075, -70.11616999999995 43.68405000000013, -70.64547563341102 43.09023834896402, -70.81488999999999 42.865299999999934, -70.82499999999999 42.33499999999998, -70.49499999999995 41.80500000000001, -70.07999999999998 41.78000000000003, -70.185 42.145000000000095, -69.88496999999995 41.92283000000009, -69.96502999999996 41.63717000000014, -70.63999999999999 41.47500000000002, -71.12039000000004 41.49445000000014, -71.8599999999999 41.32000000000005, -72.29500000000002 41.26999999999998, -72.87643000000003 41.220650000000035, -73.71000000000004 40.93110235165449, -72.24125999999995 41.119480000000124, -71.94499999999988 40.930000000000064, -73.34499999999997 40.63000000000005, -73.98200000000003 40.62799999999993, -73.95232499999997 40.75075000000004, -74.25671 40.47351000000003, -73.96243999999996 40.42763000000002, -74.17838 39.70925999999997, -74.90603999999996 38.93954000000002, -74.98041 39.19640000000004, -75.20002 39.248450000000105, -75.52805000000001 39.49850000000009, -75.32 38.960000000000036, -75.07183476478986 38.782032230179254, -75.05672999999996 38.40412000000009, -75.37746999999996 38.015510000000006, -75.94022999999999 37.21689000000009, -76.03126999999995 37.25659999999999, -75.72204999999985 37.93705000000011, -76.23286999999999 38.319214999999986, -76.35000000000002 39.14999999999998, -76.54272499999996 38.71761500000008, -76.32933000000003 38.08326000000005, -76.98999793161352 38.23999176691336, -76.30161999999996 37.91794499999992, -76.25873999999999 36.96640000000008, -75.97179999999997 36.89726000000002, -75.8680399999999 36.55125000000004, -75.72748999999999 35.55074000000013, -76.36318 34.80854000000011, -77.39763499999992 34.512009999999975, -78.05496 33.92547000000002, -78.55434999999989 33.86133000000012, -79.06067000000002 33.493949999999984, -79.20357000000001 33.158390000000054, -80.30132499999996 32.509355000000085, -80.86498 32.033300000000054, -81.33629000000002 31.44049000000001, -81.49041999999997 30.7299900000001, -81.31371000000001 30.035520000000076, -80.97999999999996 29.18000000000012, -80.53558499999991 28.472129999999993, -80.52999999999986 28.040000000000077, -80.05653928497759 26.88000000000011, -80.08801499999998 26.205764999999985, -80.13155999999992 25.816775000000064, -80.38103000000001 25.20616000000001, -80.67999999999995 25.08000000000004, -81.17212999999998 25.201260000000104, -81.33000000000004 25.639999999999986, -81.70999999999987 25.870000000000005, -82.23999999999995 26.730000000000132, -82.70515 27.495040000000074, -82.85525999999999 27.886240000000043, -82.64999999999998 28.550000000000125, -82.92999999999995 29.10000000000008, -83.70958999999999 29.936560000000043, -84.09999999999997 30.09000000000009, -85.10881999999998 29.636150000000043, -85.28784000000002 29.68612000000013, -85.7731 30.152610000000095, -86.39999999999992 30.40000000000009, -87.53035999999992 30.27433000000002, -88.41781999999995 30.384900000000016, -89.1804899999999 30.315980000000025, -89.5938311784198 30.159994004836847, -89.41373499999997 29.89418999999998, -89.43 29.488639999999975, -89.21767 29.291080000000022, -89.40822999999995 29.159610000000043, -89.77927999999997 29.307140000000118, -90.15463 29.11743000000007, -90.88022499999994 29.148535000000095, -91.62678499999993 29.677000000000135, -92.49905999999999 29.552300000000002, -93.22636999999997 29.783750000000055, -93.84841999999998 29.71363000000008, -94.69 29.480000000000132, -95.60025999999999 28.738630000000057, -96.59403999999995 28.307480000000055, -97.13999999999987 27.83000000000004, -97.36999999999995 27.380000000000052, -97.37999999999994 26.690000000000055, -97.32999999999998 26.210000000000093, -97.13999999999987 25.870000000000005, -97.52999999999992 25.84000000000009, -98.23999999999995 26.06000000000006, -99.01999999999992 26.37000000000006, -99.30000000000001 26.840000000000032, -99.51999999999992 27.54000000000002, -100.10999999999996 28.110000000000127, -100.45584000000002 28.69612000000012, -100.95759999999996 29.380710000000136, -101.66239999999999 29.77930000000009, -102.48000000000002 29.75999999999999, -103.11000000000001 28.970000000000027, -103.94 29.27000000000004, -104.4569699999999 29.571960000000047, -104.70574999999997 30.121730000000014, -105.03737000000001 30.644019999999955, -105.63159000000002 31.08383000000009, -106.1429 31.399950000000047, -106.50758999999988 31.754520000000014, -108.24000000000001 31.754853718166373, -108.24193999999994 31.342220000000054, -109.03500000000003 31.341940000000136, -111.02361000000002 31.334719999999948, -113.30498 32.03914000000009, -114.815 32.52528000000001, -114.72138999999993 32.72082999999992, -115.99134999999995 32.61239000000012, -117.12775999999985 32.53533999999996, -117.29593769127393 33.04622461520387, -117.94400000000002 33.621236431201396, -118.41060227589753 33.74090922312445, -118.51989482279976 34.02778157757575, -119.08100000000002 34.07799999999992, -119.43884064201671 34.34847717828427, -120.36777999999998 34.447110000000066, -120.62286 34.60854999999998, -120.74432999999999 35.15686000000011, -121.71456999999992 36.161529999999914, -122.54746999999998 37.551760000000115, -122.51201000000003 37.78339000000011, -122.95319 38.11371000000008, -123.72720000000004 38.95166000000012, -123.86516999999998 39.76699000000008, -124.39807000000002 40.313199999999995, -124.17885999999999 41.142020000000116, -124.21370000000002 41.99964000000011, -124.53283999999996 42.7659900000001, -124.14213999999998 43.708380000000034, -124.020535 44.615894999999966, -123.89892999999995 45.52341000000007, -124.079635 46.864750000000015, -124.39566999999994 47.72017000000011, -124.68721008300781 48.18443298339855, -124.56610107421875 48.37971496582037, -123.12 48.04000000000002, -122.58735999999993 47.09600000000006, -122.34000000000003 47.360000000000014, -122.5 48.180000000000064, -122.84000000000003 49.000000000000114)), ((-155.40214 20.07975, -155.22452 19.99302, -155.06226 19.8591, -154.80741 19.50871, -154.83147 19.453280000000003, -155.22217 19.23972, -155.54211 19.08348, -155.68817 18.91619, -155.93665 19.05939, -155.90806 19.33888, -156.07347000000001 19.70294, -156.02368 19.81422, -155.85008000000002 19.97729, -155.91907 20.17395, -155.86108000000002 20.267210000000002, -155.78505 20.2487, -155.40214 20.07975)), ((-155.99566000000002 20.76404, -156.07926 20.643970000000003, -156.41445 20.57241, -156.58673 20.783, -156.70167 20.8643, -156.71054999999998 20.92676, -156.61258 21.01249, -156.25711 20.917450000000002, -155.99566000000002 20.76404)), ((-156.75824 21.176840000000002, -156.78933 21.068730000000002, -157.32521 21.097770000000004, -157.25027 21.219579999999997, -156.75824 21.176840000000002)), ((-158.0252 21.71696, -157.94161 21.65272, -157.65283000000002 21.322170000000003, -157.70703 21.26442, -157.7786 21.27729, -158.12667000000002 21.31244, -158.2538 21.53919, -158.29265 21.57912, -158.0252 21.71696)), ((-159.36569 22.21494, -159.34512 21.982000000000003, -159.46372 21.88299, -159.80051 22.065330000000003, -159.74877 22.1382, -159.5962 22.236179999999997, -159.36569 22.21494)), ((-166.46779212142462 60.384169826897754, -165.67442969466364 60.29360687930625, -165.57916419173358 59.90998688418753, -166.19277014876727 59.75444082298899, -166.84833736882197 59.941406155020985, -167.45527706609008 60.21306915957936, -166.46779212142462 60.384169826897754)), ((-153.22872941792113 57.96896841087248, -152.56479061583514 57.901427313866996, -152.1411472239064 57.591058661522, -153.00631405333692 57.11584219016593, -154.0050902984581 56.734676825581076, -154.51640275777004 56.99274892844669, -154.67099280497118 57.46119578717253, -153.7627795074415 57.81657461204373, -153.22872941792113 57.96896841087248)), ((-140.98598761037601 69.71199839952635, -140.986 69.712, -140.9925 66.00003000000001, -140.99778 60.30639000000001, -140.013 60.27682000000001, -139.03900000000002 60, -138.34089 59.562110000000004, -137.4525 58.905, -136.47972000000004 59.46389000000005, -135.47583 59.787780000000005, -134.94500000000005 59.2705600000001, -134.27111000000002 58.86111000000005, -133.35556000000003 58.41028000000001, -132.73042 57.692890000000006, -131.70781 56.55212, -130.00778000000003 55.915830000000085, -129.98 55.285000000000004, -130.53611 54.802780000000006, -130.53610895273684 54.80275447679924, -130.5361101894673 54.8027534043494, -131.08581823797215 55.17890615500204, -131.9672114671423 55.497775580459006, -132.2500107428595 56.3699962428974, -133.53918108435641 57.17888743756214, -134.07806292029608 58.12306753196691, -135.0382110322791 58.18771474876394, -136.62806230995471 58.21220937767043, -137.800006279686 58.49999542910376, -139.867787041413 59.53776154238915, -140.825273817133 59.727517401765056, -142.57444353556446 60.08444651960497, -143.9588809948799 59.999180406323376, -145.92555681682788 60.45860972761426, -147.11437394914665 60.884656073644635, -148.22430620012761 60.67298940697714, -148.01806555885082 59.97832896589364, -148.57082251686086 59.914172675203304, -149.72785783587585 59.70565827090553, -150.60824337461642 59.368211168039466, -151.7163927886833 59.15582103131993, -151.85943315326722 59.744984035879554, -151.40971900124717 60.72580272077937, -150.3469414947325 61.03358755150987, -150.62111080625704 61.2844249538544, -151.89583919981683 60.727197984451266, -152.57832984109558 60.061657212964235, -154.01917212625764 59.35027944603428, -153.28751135965317 58.86472768821977, -154.23249243875847 58.14637360293051, -155.3074914215102 57.727794501366304, -156.30833472392305 57.422774359763594, -156.55609737854638 56.97998484967064, -158.11721655986779 56.46360809999419, -158.43332129619714 55.99415355083852, -159.60332739971741 55.56668610292013, -160.28971961163427 55.643580634170576, -161.22304765525777 55.364734605523495, -162.23776607974105 55.02418691672011, -163.06944658104638 54.68973704692712, -164.78556922102717 54.40417308208214, -164.94222632552007 54.57222483989534, -163.84833960676565 55.03943146424609, -162.87000139061595 55.34804311789321, -161.80417497459607 55.89498647727038, -160.5636047027812 56.00805451112501, -160.07055986228448 56.41805532492873, -158.6844429189195 57.01667511659787, -158.46109737855403 57.21692129172885, -157.72277035218391 57.57000051536306, -157.55027442119362 58.328326321030204, -157.04167497457698 58.91888458926172, -158.19473120830554 58.61580231386978, -158.51721798402303 58.78778148053732, -159.0586061269288 58.42418610293163, -159.71166704001737 58.93139028587632, -159.98128882550017 58.572549140041644, -160.3552711659965 59.07112335879361, -161.3550034251151 58.670837714260756, -161.96889360252632 58.67166453717738, -162.05498653872465 59.26692536074745, -161.8741707021354 59.63362132429057, -162.51805904849212 59.98972361921386, -163.8183414378202 59.79805573184336, -164.66221757714652 60.26748444278263, -165.3463877024748 60.50749563256238, -165.3508318756519 61.073895168697504, -166.12137915755602 61.50001902937623, -165.73445187077058 62.074996853271784, -164.9191786367179 62.63307648380794, -164.56250790103934 63.14637848576302, -163.75333248599708 63.21944896102377, -163.06722449445786 63.05945872664802, -162.26055538638175 63.54193573674115, -161.53444983624863 63.455816962326764, -160.7725066803211 63.766108100023246, -160.9583351308426 64.22279857040274, -161.51806840721218 64.40278758407527, -160.77777767641481 64.78860382756642, -161.39192623598765 64.77723501246231, -162.4530500966689 64.55944468856819, -162.75778601789415 64.33860545516876, -163.54639421288428 64.5591604681905, -164.96082984114514 64.44694509546883, -166.42528825586447 64.68667206487066, -166.8450042389391 65.08889557561452, -168.11056006576715 65.66999705673675, -166.70527116602193 66.08831777613938, -164.47470964257548 66.5766600612975, -163.65251176659564 66.5766600612975, -163.78860165103623 66.07720734319668, -161.67777442121013 66.11611969671242, -162.48971452538004 66.73556509059512, -163.71971696679117 67.11639455837008, -164.4309913808565 67.61633820257777, -165.39028683170673 68.04277212185025, -166.76444068099605 68.35887685817966, -166.20470740462667 68.88303091091615, -164.43081051334346 68.91553538682774, -163.1686136546145 69.37111481391287, -162.930566169262 69.85806183539927, -161.90889726463556 70.33332998318764, -160.93479651593367 70.44768992784958, -159.03917578838713 70.89164215766891, -158.11972286683394 70.82472117785102, -156.58082455139808 71.35776357694175, -155.06779029032427 71.14777639432367, -154.3441652089412 70.69640859647018, -153.9000062733926 70.88998851183567, -152.21000606993528 70.82999217394485, -152.27000240782613 70.60000621202983, -150.73999243874448 70.43001658800569, -149.7200030181675 70.53001048449045, -147.61336157935705 70.2140349392418, -145.68998980022533 70.12000967068673, -144.9200109590764 69.98999176704046, -143.58944618042523 70.15251414659832, -142.07251034871348 69.85193817817265, -140.98598752156073 69.71199839952635, -140.98598761037601 69.71199839952635)), ((-171.73165686753944 63.782515367275934, -171.1144335602453 63.59219106714495, -170.4911124339407 63.694975490973505, -169.6825054596536 63.43111562769119, -168.6894394603007 63.297506212000556, -168.77194088445466 63.18859813094544, -169.5294398672051 62.97693146427792, -170.29055620021595 63.194437567794424, -170.67138566799093 63.3758218451389, -171.55306311753873 63.317789211675105, -171.79111060289122 63.40584585230046, -171.73165686753944 63.782515367275934)))\">MULTIPOLYGON (((-122.84000000000003 4<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((141.00021040259185 -2.60015105551566, 141.01705691951895 -5.859021905138071, 141.03385176001382 -9.117892754760483, 140.14341515519254 -8.29716765710095, 139.1277665549281 -8.096042982620979, 138.881476678625 -8.380935153846075, 137.61447391169287 -8.41168263105974, 138.03909915583517 -7.597882175327321, 138.66862145401478 -7.320224704623087, 138.4079138531023 -6.232849216337485, 137.92783979711078 -5.393365573756, 135.98925011611345 -4.54654387778907, 135.16459760959975 -4.462931410340822, 133.66288048719787 -3.538853448097541, 133.36770470594672 -4.024818617370315, 132.98395551974727 -4.112978610860253, 132.75694095268904 -3.7462826473171233, 132.75378869031925 -3.3117872046070502, 131.98980431531618 -2.820551039240499, 133.0668445171434 -2.460417982598436, 133.78003095920354 -2.4798483211401816, 133.69621178602614 -2.214541517753702, 132.23237348849426 -2.2125261368943185, 131.83622195854474 -1.6171619604596472, 130.94283979708285 -1.4325220678807826, 130.5195581401801 -0.9377202286860893, 131.8675378765136 -0.6954611141017892, 132.3801164084167 -0.3695378556369491, 133.98554813042836 -0.7802104630604559, 134.14336795464772 -1.151867364103623, 134.42262739475302 -2.769184665542376, 135.45760298069467 -3.367752780779149, 136.29331424371884 -2.307042331556154, 137.44073774632756 -1.7035132788193648, 138.3297274110447 -1.7026864559026933, 139.18492068904288 -2.0512956681436734, 139.92668419816044 -2.409051608900313, 141.00021040259185 -2.60015105551566)), ((124.96868248911623 -8.892790215697083, 125.07001997284061 -9.089987481322872, 125.08852013560109 -9.393173109579294, 124.43595014861933 -10.140000909061449, 123.57998172413669 -10.359987481327956, 123.459989048355 -10.239994805546223, 123.55000939340744 -9.900015557497987, 123.9800089865081 -9.290026950724716, 124.96868248911623 -8.892790215697083)), ((134.21013390516885 -6.89523772545472, 134.11277550673094 -6.142467136259, 134.29033572808584 -5.783057549669017, 134.49962527886788 -5.445042006047871, 134.72700158095216 -5.737582289252167, 134.7246244650667 -6.214400730009288, 134.21013390516885 -6.89523772545472)), ((117.88203494677018 4.137551377779516, 117.3132324565335 3.234428208830593, 118.0483297058854 2.2876901310273325, 117.87562706916597 1.8276406925489255, 118.99674726773816 0.9022191430660627, 117.8118583517178 0.7842418481437078, 117.47833865770603 0.1024746769170264, 117.52164350796664 -0.8037232397532676, 116.56004845587947 -1.4876608211362097, 116.5337968282752 -2.483517347832901, 116.14808393764866 -4.012726332214022, 116.00085778204911 -3.6570374487490582, 114.86480309454456 -4.106984144714396, 114.46865156459506 -3.495703627133828, 113.75567182826407 -3.4391696102065197, 113.25699425664752 -3.118775729996905, 112.06812625534067 -3.4783920223160507, 111.70329064336005 -2.9944422339026535, 111.04824018762824 -3.0494259578612106, 110.223846063276 -2.9340324845534553, 110.07093550012434 -1.5928740372824635, 109.571947869914 -1.3149065079844746, 109.0918738139225 -0.4595065242570939, 108.9526575053282 0.4153754744443177, 109.06913618371408 1.3419339054376138, 109.66326012577375 2.0064669864949565, 109.83022667850881 1.3381356876641632, 110.51406090702716 0.7731314152009645, 111.15913781132662 0.976478176269481, 111.79754845586041 0.9044412296546085, 112.38025190638359 1.4101209578467433, 112.85980919805218 1.4977900252299037, 113.8058496440195 1.2175487329110695, 114.62135542201753 1.4306881778989011, 115.13403730678522 2.8214818383862337, 115.51907840379198 3.169238389494396, 115.8655172058767 4.3065591495901, 117.01521447150628 4.3060940616994685, 117.88203494677018 4.137551377779516)), ((129.37099775606094 -2.8021542293445947, 130.47134402885177 -3.093764336767634, 130.83483605359282 -3.8584721818227763, 129.99054650280817 -3.446300957862796, 129.15524865124235 -3.3626368139822485, 128.59068362845363 -3.428679294451264, 127.89889122936235 -3.393435967628207, 128.13587934785284 -2.843650404474971, 129.37099775606094 -2.8021542293445947)), ((126.87492272349886 -3.7909827612495874, 126.18380211802736 -3.607376397316564, 125.98903364471926 -3.177273451351305, 127.00065148326497 -3.129317722184446, 127.24921512258891 -3.45906503663889, 126.87492272349886 -3.7909827612495874)), ((127.93237755748748 2.1745962589565693, 128.00415612194087 1.6285313989283452, 128.5945593608755 1.5408106551128782, 128.6882487326207 1.1323859724940633, 128.63595218314134 0.2584858260061935, 128.1201697124361 0.3564126651992865, 127.96803429576886 -0.2520773250375186, 128.3799988139997 -0.7800037573313005, 128.1000159038423 -0.8999964331130315, 127.69647464407507 -0.2665984025115335, 127.39949018769369 1.011721503092545, 127.60051150930906 1.810690822757195, 127.93237755748748 2.1745962589565693)), ((122.9275667664518 0.8751923689774088, 124.07752241424288 0.9171019555661245, 125.0659892111218 1.6432591821315297, 125.2405005229715 1.4198361271176054, 124.4370353536974 0.4278811710589565, 123.6855049988767 0.235593166500891, 122.72308312387287 0.4311367862933366, 121.05672488818911 0.3812173526993945, 120.18308312386272 0.2372468123342344, 120.04086958219548 -0.5196578914448367, 120.93590538949073 -1.408905938323393, 121.4758207540762 -0.9559620092851304, 123.34056481332846 -0.6156727026431383, 123.25839928598441 -1.0762130672283092, 122.82271528533161 -0.9309506160558526, 122.38852990121529 -1.516858005381117, 121.50827355355551 -1.904482924002458, 122.4545723816843 -3.1860584448409237, 122.2718961935325 -3.5295000138527115, 123.17096276254655 -4.683693129091701, 123.1623327983538 -5.340603936385996, 122.62851525277875 -5.634591159694466, 122.23639448454801 -5.2829330379482675, 122.71956912647701 -4.464171644715826, 121.73823367725436 -4.851331475446543, 121.48946333220127 -4.574552504091265, 121.61917117725386 -4.1884778784386825, 120.89818159391766 -3.602105401222794, 120.97238895068878 -2.627642917494939, 120.30545291552986 -2.9316036922357327, 120.39004723519167 -4.097579034037274, 120.43071658740537 -5.528241062037793, 119.79654341031949 -5.673400160345665, 119.36690555224489 -5.3798780249278195, 119.65360639860017 -4.459417412944973, 119.49883548388601 -3.4944117163265322, 119.07834435432704 -3.487021986508793, 118.76776899625287 -2.801999200047718, 119.18097374885869 -2.1471037736128054, 119.3233939962551 -1.3531470678804638, 119.82599897672587 0.1542544620734816, 120.0357019389663 0.5664773624657613, 120.88577925016762 1.3092227237968501, 121.66681684782696 1.0139435896810909, 122.9275667664518 0.8751923689774088)), ((120.29501427620689 -10.258649997603591, 118.96780846565471 -9.557969252158074, 119.90030968636157 -9.361340427287502, 120.42575564990534 -9.665921319215798, 120.77550174365675 -9.96967538822743, 120.71560875863045 -10.239581394087885, 120.29501427620689 -10.258649997603591)), ((121.34166873584651 -8.536739597206072, 122.00736453663043 -8.460620212440148, 122.90353722543607 -8.094234307490765, 122.75698286345632 -8.649807631060696, 121.2544905945701 -8.933666273639957, 119.92439090380958 -8.81041798262384, 119.92092858284605 -8.444858900591122, 120.71509199430757 -8.236964613480914, 121.34166873584651 -8.536739597206072)), ((118.26061648974044 -8.362383314653293, 118.87845991422208 -8.280682875199844, 119.12650678922307 -8.705824883665088, 117.97040164598928 -8.906639499551304, 117.27773074754901 -9.040894870645594, 116.74014082241665 -9.032936700072646, 117.0837374207253 -8.45715789147659, 117.6320243673421 -8.449303073768228, 117.90001834520776 -8.09568124759494, 118.26061648974044 -8.362383314653293)), ((108.48684614464926 -6.42198495852574, 108.62347863162896 -6.777673841990705, 110.53922732955328 -6.877357679881726, 110.75957563684585 -6.465186455921747, 112.6148112325564 -6.946035658397626, 112.97876834518806 -7.594213148634594, 114.47893517462114 -7.7765276017603275, 115.70552697150106 -8.370806573116873, 114.56451134649649 -8.751816908404855, 113.46473351446085 -8.348947442257405, 112.55967247930097 -8.376180922075221, 111.52206139531245 -8.302128594600973, 110.58614953007432 -8.122604668819001, 109.42766727095511 -7.740664157749762, 108.69365522668133 -7.641600437046243, 108.27776329959633 -7.766657403192576, 106.45410200401612 -7.354899590690934, 106.28062422081231 -6.924899997590252, 105.36548628135552 -6.851416110871206, 106.05164594932702 -5.895918877794472, 107.2650085795402 -5.954985039904081, 108.07209109907467 -6.3457622208952245, 108.48684614464926 -6.42198495852574)), ((104.36999148968489 -1.0848430314210589, 104.53949018760221 -1.7823715144967662, 104.88789269411402 -2.340425306816705, 105.62211144411697 -2.4288436824680986, 106.10859337771265 -3.0617766251789647, 105.85744591677414 -4.305524997579774, 105.8176550639094 -5.85235564537242, 104.71038414919144 -5.873284600450632, 103.86821333213078 -5.037314955264996, 102.5842606954069 -4.2202588842981825, 102.156173130301 -3.6141460099468006, 101.39911339722507 -2.7997771134591645, 100.90250288290015 -2.050262139497832, 100.14198082886065 -0.6503475887109857, 99.26373986206028 0.1831415877246343, 98.97001102091326 1.042882391764536, 98.60135135294306 1.8235065779655741, 97.69959760944985 2.45318390544206, 97.17694217324984 3.3087905948985963, 96.42401655475726 3.868859768077925, 95.3808760925135 4.970782172053688, 95.29302615761729 5.479820868344788, 95.93686282754174 5.439513251157123, 97.4848820332771 5.246320909033955, 98.36916914265566 4.2683702661263965, 99.1425586283358 3.590349636240873, 99.69399783732241 3.174328518075143, 100.64143354696162 2.099381211755741, 101.65801232300734 2.0836974145551608, 102.49827111207323 1.3987004663102311, 103.07684044801303 0.5613613956688681, 103.83839603069836 0.1045417342086949, 103.4376452982749 -0.7119458960029021, 104.01078860882404 -1.0592115210042863, 104.36999148968489 -1.0848430314210589)))\">MULTIPOLYGON (((141.00021040259185 -2<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-68.63401022758323 -52.63637045887449, -68.25 -53.1, -67.75 -53.85, -66.45 -54.45, -65.05 -54.699999999999996, -65.5 -55.2, -66.45 -55.25, -66.95992000000001 -54.896810000000016, -67.56244 -54.87001, -68.63335000000001 -54.869499999999995, -68.63401022758323 -52.63637045887449)), ((-57.62513342958296 -30.21629485445426, -57.87493730328188 -31.016556084926208, -58.14244035504076 -32.044503676076154, -58.13264767112145 -33.040566908502015, -58.349611172098875 -33.26318897881541, -58.42707414410439 -33.909454441057576, -58.49544206402655 -34.43148976007008, -57.22582963726366 -35.28802662530788, -57.36235877137878 -35.977390232081476, -56.73748735210545 -36.41312590916655, -56.78828528504836 -36.901571547189334, -57.74915686708346 -38.18387053807989, -59.23185706240189 -38.720220228837235, -61.23744523786564 -38.9284245745412, -62.33595699731013 -38.827707208004334, -62.125763108962936 -39.42410491308485, -62.330530971919494 -40.17258635840034, -62.145994432205214 -40.67689666113672, -62.745802781816984 -41.0287614886121, -63.77049475773255 -41.16678923926369, -64.73208980981973 -40.80267709733515, -65.11803524439158 -41.06431487402891, -64.97856055363582 -42.05800099056934, -64.3034079657425 -42.35901620866951, -63.75594784204239 -42.043686618824495, -63.458059048095876 -42.563138116222405, -64.37880388045633 -42.87355844499969, -65.18180396183975 -43.495380954767796, -65.32882341171013 -44.501366062193696, -65.5652689276616 -45.036785577169795, -66.50996578638934 -45.03962778094586, -67.29379391139247 -45.55189625425519, -67.58054643418008 -46.30177296324257, -66.59706641301729 -47.033924655953825, -65.64102657740149 -47.23613453551193, -65.98508826360079 -48.133289076531135, -67.16617896184769 -48.697337334996945, -67.81608761256643 -49.86966887797038, -68.72874508327321 -50.26421843851883, -69.13853919134777 -50.732510267947795, -68.81556148952356 -51.771104011594126, -68.14999487982038 -52.34998340612768, -68.57154537624133 -52.299443855346226, -69.49836218939609 -52.14276091263727, -71.91480383979638 -52.0090223058659, -72.32940385607407 -51.42595631287243, -72.30997351753234 -50.67700977966632, -72.97574683296469 -50.741450290734285, -73.32805091011453 -50.378785088909915, -73.4154357571201 -49.31843637471297, -72.64824744331494 -48.87861825947683, -72.33116085477201 -48.2442383766618, -72.44735531278027 -47.73853281025352, -71.91725847033024 -46.88483814879177, -71.55200944689128 -45.5607329241771, -71.65931555854536 -44.973688653341426, -71.22277889675976 -44.784242852559416, -71.32980078803622 -44.407521661151655, -71.79362260607193 -44.207172133156064, -71.46405615913051 -43.787611179378345, -71.91542395698389 -43.40856454851745, -72.14889807807856 -42.254888197601375, -71.7468037584155 -42.05138640723598, -71.91573401557763 -40.83233936947069, -71.68076127794649 -39.808164157878046, -71.41351660834906 -38.91602223079114, -70.81466427273469 -38.55299529394074, -71.11862504747549 -37.57682748794724, -71.12188066270987 -36.65812387466232, -70.36476925320164 -36.00508879978992, -70.38804948594913 -35.16968759535949, -69.81730912950152 -34.1935714657983, -69.81477698431922 -33.273886000299825, -70.0743993801536 -33.09120981214805, -70.53506893581951 -31.36501026787031, -69.91900834825194 -30.33633920666828, -70.01355038112992 -29.367922865518572, -69.65613033718317 -28.459141127233686, -69.00123491074825 -27.52121388113618, -68.29554155137043 -26.89933969493578, -68.59479977077268 -26.506908868111296, -68.38600114609736 -26.185016371365215, -68.41765296087614 -24.51855478281688, -67.32844295924417 -24.02530323659095, -66.9852339341777 -22.98634856536284, -67.1066735500636 -22.735924574476417, -66.27333940292485 -21.83231047942072, -64.96489213729461 -22.075861504812327, -64.37702104354226 -22.79809132252354, -63.986838141522476 -21.99364430103595, -62.84646847192156 -22.03498544686945, -62.685057135657885 -22.249029229422387, -60.846564704009914 -23.880712579038292, -60.02896603050403 -24.032796319273274, -58.80712846539498 -24.77145924245331, -57.77721716981794 -25.16233977630904, -57.63366004091113 -25.60365650808164, -58.61817359071975 -27.123718763947096, -57.60975969097614 -27.395898532828387, -56.486701626192996 -27.548499037386293, -55.69584550639816 -27.387837009390864, -54.78879492859505 -26.621785577096134, -54.625290696823576 -25.739255466415514, -54.13004960795439 -25.547639255477254, -53.628348965048744 -26.124865004177472, -53.64873531758789 -26.92347258881609, -54.490725267135524 -27.47475676850579, -55.16228634298457 -27.881915378533463, -56.29089962423908 -28.852760512000895, -57.62513342958296 -30.21629485445426)))\">MULTIPOLYGON (((-68.63401022758323 -5<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-68.63401022758323 -52.63637045887449, -68.63335000000001 -54.869499999999995, -67.56244 -54.87001, -66.95992000000001 -54.896810000000016, -67.29102999999992 -55.30123999999995, -68.14862999999991 -55.61183, -68.63999081081187 -55.58001799908692, -69.2321 -55.49905999999993, -69.95808999999997 -55.19843000000003, -71.00567999999998 -55.053830000000005, -72.26390000000004 -54.49513999999999, -73.28519999999997 -53.95751999999993, -74.66253 -52.837489999999946, -73.8381 -53.04743000000002, -72.43417999999997 -53.71539999999999, -71.10773 -54.07432999999992, -70.59177999999986 -53.61582999999996, -70.26747999999998 -52.93123000000003, -69.34564999999992 -52.518299999999954, -68.63401022758323 -52.63637045887449)), ((-69.59042375352405 -17.580011895419332, -69.10024695501949 -18.260125420812678, -68.96681840684187 -18.981683444904107, -68.44222510443092 -19.40506845467143, -68.75716712103375 -20.372657972904463, -68.21991309271128 -21.494346612231865, -67.82817989772273 -22.872918796482175, -67.1066735500636 -22.735924574476417, -66.9852339341777 -22.98634856536284, -67.32844295924417 -24.02530323659095, -68.41765296087614 -24.51855478281688, -68.38600114609736 -26.185016371365215, -68.59479977077268 -26.506908868111296, -68.29554155137043 -26.89933969493578, -69.00123491074825 -27.52121388113618, -69.65613033718317 -28.459141127233686, -70.01355038112992 -29.367922865518572, -69.91900834825194 -30.33633920666828, -70.53506893581951 -31.36501026787031, -70.0743993801536 -33.09120981214805, -69.81477698431922 -33.273886000299825, -69.81730912950152 -34.1935714657983, -70.38804948594913 -35.16968759535949, -70.36476925320164 -36.00508879978992, -71.12188066270987 -36.65812387466232, -71.11862504747549 -37.57682748794724, -70.81466427273469 -38.55299529394074, -71.41351660834906 -38.91602223079114, -71.68076127794649 -39.808164157878046, -71.91573401557763 -40.83233936947069, -71.7468037584155 -42.05138640723598, -72.14889807807856 -42.254888197601375, -71.91542395698389 -43.40856454851745, -71.46405615913051 -43.787611179378345, -71.79362260607193 -44.207172133156064, -71.32980078803622 -44.407521661151655, -71.22277889675976 -44.784242852559416, -71.65931555854536 -44.973688653341426, -71.55200944689128 -45.5607329241771, -71.91725847033024 -46.88483814879177, -72.44735531278027 -47.73853281025352, -72.33116085477201 -48.2442383766618, -72.64824744331494 -48.87861825947683, -73.4154357571201 -49.31843637471297, -73.32805091011453 -50.378785088909915, -72.97574683296469 -50.741450290734285, -72.30997351753234 -50.67700977966632, -72.32940385607407 -51.42595631287243, -71.91480383979638 -52.0090223058659, -69.49836218939609 -52.14276091263727, -68.57154537624133 -52.299443855346226, -69.46128434922667 -52.29195077266391, -69.9427795071062 -52.53793059037322, -70.8451016913546 -52.89920052852571, -71.00633216010525 -53.83325204220132, -71.429794684521 -53.85645476030037, -72.55794287788488 -53.53141000118449, -73.7027567206629 -52.835069268607235, -73.7027567206629 -52.835070076051494, -74.94676347522517 -52.262753588419, -75.2600260077785 -51.62935475037325, -74.97663245308988 -51.0433956846157, -75.47975419788355 -50.37837167745158, -75.60801510283198 -48.67377288187184, -75.18276974150216 -47.7119194476232, -74.1265809801047 -46.93925343199511, -75.64439531116545 -46.64764332457207, -74.69215369332312 -45.76397633238103, -74.35170935738425 -44.10304412208794, -73.24035600451522 -44.454960625995604, -72.7178039211798 -42.38335580827898, -73.38889990913822 -42.117532240569574, -73.70133561877488 -43.365776462579774, -74.33194312203261 -43.22495818458442, -74.0179571194272 -41.79481292090683, -73.67709937202999 -39.94221282324317, -73.21759253609065 -39.25868865331856, -73.50555945503712 -38.282882582351114, -73.58806087919109 -37.15628468195598, -73.1667170884993 -37.12378020604439, -72.55313696968174 -35.50884002049106, -71.86173214383263 -33.90909270603153, -71.4384504869299 -32.41889942803078, -71.66872066922247 -30.920644626592495, -71.37008256700773 -30.09568206148503, -71.48989437527645 -28.861442152625923, -70.90512386746161 -27.640379734001247, -70.72495398627599 -25.705924167587256, -70.40396582709502 -23.628996677344574, -70.09124589708074 -21.39331918710126, -70.16441972520605 -19.756468194256165, -70.37257239447771 -18.34797535570887, -69.85844356960587 -18.092693780187012, -69.59042375352405 -17.580011895419332)))\">MULTIPOLYGON (((-68.63401022758323 -5<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((39.20222 -4.67677, 37.7669 -3.6771200000000004, 37.69868999999994 -3.0969899999999484, 34.07261999999997 -1.0598199999999451, 33.90371119710453 -0.9500000000000001, 33.893568969666944 0.1098135378618963, 34.18 0.515, 34.6721 1.1769399999999999, 35.03599 1.90584, 34.59607 3.0537400000001185, 34.47913 3.5556000000000836, 34.005 4.249884947362048, 34.62019626785388 4.8471227420819885, 35.29800711823298 5.506, 35.817447662353516 5.338232082790797, 35.817447662353516 4.7769656634618896, 36.159078632855646 4.447864127672769, 36.85509323800812 4.447864127672769, 38.120915 3.598605, 38.43697 3.58851, 38.67114 3.6160700000000006, 38.89251 3.5007400000000004, 39.55938425876585 3.42206, 39.85494 3.83879, 40.76848 4.257020000000001, 41.1718 3.9190899999999997, 41.85508309264397 3.918911920483727, 40.98105 2.7845199999999997, 40.993 -0.85829, 41.58513 -1.6832500000000001, 40.88477 -2.08255, 40.63785000000001 -2.49979, 40.26304000000001 -2.57309, 40.12119 -3.27768, 39.80006 -3.68116, 39.604890000000005 -4.3465300000000004, 39.20222 -4.67677)))\">MULTIPOLYGON (((39.20222 -4.67677, 37<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((178.7253 71.0988, 180.00000000000006 71.51571433642829, 180.00000000000006 70.83219920854673, 178.90342499999997 70.78114000000001, 178.7253 71.0988)), ((49.10116000000011 46.399330000000134, 48.64541000000008 45.806290000000104, 47.67590999999999 45.64149000000015, 46.68201000000005 44.6092000000001, 47.59093999999999 43.660160000000076, 47.49252000000007 42.98658000000012, 48.58437000000015 41.808880000000045, 48.58435339611342 41.80886879162067, 47.98728315612598 41.40581920019423, 47.81566572448463 41.15141612402135, 47.37331546406623 41.2197323675112, 46.68607059101661 41.82713715266988, 46.404950799348825 41.860675157227305, 45.776400000000024 42.09244000000018, 45.47027916848572 42.50278066666998, 44.537622918481986 42.71199270280363, 43.931210000000135 42.55496000000011, 43.75599000000011 42.740830000000074, 42.39440000000013 43.220300000000066, 40.922190000000114 43.38215000000014, 40.07696495947977 43.553104153002316, 39.955008579270924 43.43499766699922, 38.68000000000001 44.280000000000086, 37.539120000000025 44.65721000000002, 36.6754600000001 45.244690000000105, 37.4031700000001 45.40451000000013, 38.23295000000002 46.24087000000003, 37.67372 46.636570000000006, 39.14767000000012 47.044750000000136, 39.121200000000044 47.26336000000009, 38.223538038899335 47.10218984637595, 38.25511233902978 47.54640045835691, 38.77057000000008 47.825620000000185, 39.738277622238854 47.89893707945197, 39.89562000000018 48.23241000000007, 39.674649999999986 48.78382000000016, 40.080789015469406 49.30742991799934, 40.06904000000014 49.60104999999999, 38.59498823421342 49.9264619004237, 38.01063113785693 49.9156615260747, 37.39345950699516 50.38395335550365, 36.62616784032542 50.225590928745135, 35.356116163887975 50.57719737405904, 35.377909999999986 50.773940000000096, 35.02218305841791 51.2075723333715, 34.22481570815427 51.25599315042888, 34.141978387190534 51.566413479206346, 34.39173058445709 51.768881740925906, 33.75269982273579 52.3350745713318, 32.715760532367085 52.23846548116211, 32.41205813978769 52.28869497334978, 32.15944000000013 52.06125000000014, 31.78599244755525 52.1016775699397, 31.785970000000077 52.1016800000001, 31.54001834486226 52.74205231384636, 31.305200636528014 53.07399587667321, 31.49763999999999 53.16743000000014, 32.30451948418823 53.13272614197291, 32.69364301934604 53.35142080343218, 32.405598585751164 53.61804535584204, 31.731272820774507 53.79402944601202, 31.79142418796224 53.974638576872124, 31.38447228366374 54.15705638286238, 30.75753380709872 54.81177094178432, 30.971835971813135 55.08154775656404, 30.87390913262001 55.55097646750341, 29.896294386522356 55.78946320253041, 29.371571893030673 55.670090643936184, 29.229513380660308 55.91834422466636, 28.17670942557794 56.16912995057879, 27.855282016722526 56.75932648378429, 27.77001590344093 57.24425812441123, 27.288184848751513 57.47452830670383, 27.71668582531572 57.79189911562436, 27.42015000000015 58.72457000000014, 28.13169925305175 59.300825100330925, 27.981120000000033 59.47537000000011, 27.981126857000987 59.47537333432527, 29.117700000000013 60.02805000000012, 28.070001921525666 60.50351912796823, 28.07000000000005 60.503520000000094, 30.21110721204445 61.780027777749694, 31.139991082490894 62.35769277612441, 31.516092156711125 62.86768748641289, 30.035872430142717 63.55281362573855, 30.44468468600371 64.20445343693909, 29.54442955904699 64.94867157659048, 30.217650000000003 65.80598, 29.054588657352326 66.94428620062206, 29.97742638522061 67.69829702419275, 28.445943637818658 68.36461294216404, 28.591929559043194 69.06477692328666, 29.399550000000033 69.15692000000013, 31.101042202597625 69.55810108805622, 31.10108000000008 69.55811000000011, 32.13272000000018 69.90595000000019, 33.77547000000004 69.30142000000012, 36.51396 69.06342000000006, 40.29234000000014 67.93240000000003, 41.059870000000046 67.45713000000012, 41.1259500000001 66.79158000000007, 40.01583000000005 66.26618000000013, 38.382949999999994 65.9995300000001, 33.91871000000015 66.75961000000001, 33.18444000000005 66.63252999999997, 34.814770000000124 65.90015000000017, 34.87857425307874 65.4362128770482, 34.94391000000007 64.41437000000019, 36.23129 64.10945000000004, 37.01273000000009 63.84983000000011, 37.141970000000185 64.33471000000009, 36.53957903508979 64.76446000000004, 37.17604000000006 65.14322000000016, 39.59345000000002 64.5207900000002, 40.43560000000008 64.76446000000004, 39.76260000000019 65.49682000000001, 42.09309000000013 66.47623000000004, 43.01604000000009 66.41858000000013, 43.94975000000011 66.06908000000004, 44.53226000000001 66.75634000000014, 43.698390000000074 67.35245000000003, 44.18795000000017 67.95051000000012, 43.45282000000003 68.57078999999999, 46.250000000000114 68.25, 46.82134000000008 67.68997000000007, 45.55517000000003 67.56652000000003, 45.56202000000013 67.01005000000015, 46.34915000000012 66.6676700000001, 47.89416000000017 66.8845500000001, 48.13876000000005 67.52238000000006, 50.22766000000013 67.99867000000017, 53.71743000000015 68.85738000000015, 54.47171000000009 68.80815000000001, 53.48582000000016 68.20130999999998, 54.726279999999974 68.09701999999999, 55.44268000000011 68.43866000000008, 57.31702000000007 68.4662800000001, 58.802000000000135 68.88081999999997, 59.94142000000011 68.27844000000005, 61.07784000000021 68.94069000000007, 60.02999999999997 69.5200000000001, 60.55000000000001 69.85000000000002, 63.50400000000013 69.54739000000006, 64.88811500000003 69.23483500000009, 68.51216000000016 68.09233000000012, 69.18068000000011 68.61563000000012, 68.16444000000007 69.14436000000006, 68.13522 69.35649000000012, 66.93008000000015 69.45461000000012, 67.25976000000009 69.92873000000009, 66.72492000000017 70.70889000000017, 66.69466000000006 71.02897000000019, 68.54006000000004 71.93450000000018, 69.19636000000003 72.84336000000019, 69.94 73.04000000000008, 72.58754000000005 72.77629000000013, 72.79603000000003 72.22005999999999, 71.84811000000008 71.4089800000001, 72.47010999999998 71.09019000000006, 72.79188000000005 70.39114000000001, 72.56470000000013 69.02085, 73.66787 68.40789999999998, 73.23870000000005 67.74040000000002, 71.28000000000009 66.3200000000001, 72.42301000000009 66.17267000000021, 72.82076999999998 66.53267000000005, 73.92099000000013 66.78946000000013, 74.18651000000011 67.28429, 75.05200000000008 67.76047000000011, 74.46926000000013 68.32899000000009, 74.9358400000001 68.98918000000009, 73.84235999999999 69.07146000000006, 73.60187000000019 69.62763000000001, 74.39980000000003 70.63175000000001, 73.10109999999997 71.4471700000002, 74.89082000000019 72.12119000000013, 74.65926000000007 72.83227000000005, 75.1580100000001 72.85497000000015, 75.68351000000013 72.30056000000013, 75.2889800000001 71.3355600000001, 76.35911000000004 71.15287000000018, 75.90313000000015 71.87401000000006, 77.57665000000009 72.26717000000002, 79.6520200000001 72.32011, 81.50000000000006 71.75000000000006, 80.6107100000001 72.58285000000012, 80.51109000000002 73.64819999999997, 82.25000000000006 73.85000000000014, 84.65526 73.80591000000021, 86.82230000000015 73.93688000000003, 86.00956000000002 74.45967000000019, 87.16682000000014 75.11643000000004, 88.31571000000008 75.14393000000007, 90.26000000000005 75.64000000000004, 92.90057999999999 75.7733300000001, 93.23421000000008 76.04720000000009, 95.86000000000018 76.1400000000001, 96.67821000000009 75.91548, 98.92254000000014 76.44689, 100.75967000000014 76.43028000000004, 101.03532000000001 76.86189000000007, 101.9908400000001 77.28754000000015, 104.35160000000013 77.69792000000007, 106.06664000000018 77.37389000000007, 104.70500000000015 77.12740000000008, 106.9701300000001 76.97419000000008, 107.24000000000012 76.48000000000002, 108.1538000000001 76.7233500000001, 111.0772600000002 76.71000000000004, 113.33150999999998 76.22224, 114.13417000000004 75.84764000000001, 113.88539000000003 75.32779000000016, 112.77918 75.03186000000011, 110.15125000000012 74.47673000000003, 109.40000000000003 74.18000000000006, 110.63999999999999 74.04000000000002, 112.11919 73.78774000000016, 113.01954000000023 73.97693000000015, 113.52958000000024 73.33505000000014, 113.96880999999996 73.59488000000005, 115.56781999999998 73.75285000000008, 118.77633000000014 73.58771999999999, 119.01999999999998 73.12000000000006, 123.20066000000008 72.97122000000007, 123.25777000000016 73.73503000000005, 125.38000000000011 73.56000000000006, 126.97644000000003 73.56549000000012, 128.59126000000003 73.0387100000001, 129.05156999999997 72.39872000000008, 128.46000000000004 71.98000000000002, 129.71599000000015 71.19304000000011, 131.28858000000025 70.78699000000012, 132.25350000000014 71.83630000000011, 133.85766000000024 71.3864200000001, 135.56192999999996 71.65525000000014, 137.49755000000005 71.3476300000001, 138.23409000000015 71.62803000000002, 139.8698300000001 71.48783000000014, 139.14791000000002 72.41619000000014, 140.46817 72.84941000000015, 149.5 72.20000000000005, 150.3511800000001 71.60643000000005, 152.9689000000002 70.84222000000005, 157.00688000000002 71.03141000000005, 158.99779 70.86671999999999, 159.83031000000017 70.45324000000005, 159.70866 69.72198000000003, 160.9405300000003 69.4372800000001, 162.27907000000005 69.64204000000001, 164.05248000000006 69.66823, 165.94037000000014 69.47199, 167.83566999999994 69.58269000000013, 169.5776300000001 68.69380000000007, 170.8168800000002 69.01362999999998, 170.0082000000001 69.65276000000006, 170.4534500000002 70.09703000000007, 173.64391000000012 69.81743000000006, 175.7240300000002 69.87725000000017, 178.60000000000002 69.40000000000003, 180 68.96363636363651, 180 64.97970870219848, 179.99280999999996 64.97433000000001, 178.70720000000028 64.53493000000003, 177.41128000000003 64.60821000000004, 178.3130000000001 64.07593000000003, 178.90825000000018 63.251970000000085, 179.37033999999994 62.98262000000011, 179.48636 62.56894, 179.22825 62.304100000000176, 177.36430000000007 62.52190000000007, 174.56929000000025 61.769150000000025, 173.68013000000008 61.652610000000095, 172.14999999999998 60.94999999999999, 170.69850000000008 60.33618000000013, 170.33085000000028 59.881770000000074, 168.90045999999995 60.57355000000007, 166.29498000000024 59.78855000000016, 165.84000000000015 60.160000000000025, 164.87673999999993 59.731600000000014, 163.53929000000005 59.86871000000002, 163.21711000000016 59.211010000000044, 162.01733000000002 58.24328000000003, 162.05296999999996 57.83911999999998, 163.19191 57.615030000000104, 163.05794000000014 56.159240000000125, 162.12958000000015 56.122190000000046, 161.70146 55.285680000000184, 162.1174900000001 54.855140000000006, 160.36877000000027 54.34433000000007, 160.02173000000016 53.202570000000094, 158.5309400000001 52.958680000000186, 158.23118 51.94269000000003, 156.78979000000027 51.01105000000007, 156.42000000000007 51.700000000000045, 155.99181999999996 53.158950000000004, 155.43366000000003 55.38103000000012, 155.9144200000003 56.767920000000174, 156.75815 57.36470000000003, 156.81035000000008 57.832040000000006, 158.3643300000001 58.055750000000046, 160.15064000000007 59.31477000000007, 161.87203999999997 60.343000000000075, 163.66968999999995 61.1409000000001, 164.47355000000005 62.550610000000006, 163.25842000000011 62.46627000000012, 162.65791000000002 61.64250000000004, 160.12148000000002 60.544230000000084, 159.30232 61.7739600000001, 156.72068000000002 61.434420000000046, 154.21806000000026 59.75818000000015, 155.04375000000005 59.14495000000005, 152.81185000000005 58.88385000000005, 151.2657300000002 58.78089, 151.33815000000004 59.50396000000006, 149.78371000000004 59.655730000000176, 148.54480999999998 59.164480000000026, 145.48721999999998 59.336370000000045, 142.1978200000001 59.03998000000013, 138.95848000000024 57.08805000000007, 135.12618999999995 54.72959000000009, 136.70171000000005 54.603550000000155, 137.19342000000006 53.97732000000002, 138.16470000000004 53.7550100000002, 138.80462999999997 54.25455000000005, 139.90151000000003 54.18968000000012, 141.34531000000004 53.08957000000015, 141.37923 52.238770000000045, 140.59742000000017 51.2396700000001, 140.51307999999995 50.045530000000156, 140.0619300000002 48.44671000000011, 138.5547200000002 46.999649999999974, 138.21970999999996 46.307950000000005, 136.86232000000007 45.14350000000013, 135.51535000000013 43.98900000000009, 134.86939000000018 43.39821000000006, 133.53687000000025 42.8114700000001, 132.90627000000006 42.79849000000013, 132.27807000000018 43.28456000000011, 130.93587000000014 42.552740000000085, 130.78000485358513 42.22001036108258, 130.78000366004676 42.220007813203225, 130.77999999999997 42.22000000000014, 130.77999231657833 42.22000960427719, 130.6400000000001 42.39500000000004, 130.63999970690955 42.39502427522179, 130.63386640840974 42.90301463477053, 131.1446879416149 42.92998973242689, 131.28855512911548 44.11151968034828, 131.02519000000018 44.96796000000006, 131.8834542176595 45.32116160743652, 133.09712000000013 45.14409000000006, 133.76964399631288 46.116926988299014, 134.1123500000001 47.212480000000085, 134.50081 47.57845000000009, 135.02631147678665 48.478229885443874, 133.37359581922794 48.18344167743487, 132.50669000000005 47.78896000000003, 130.9872600000001 47.79013000000003, 130.58229332898242 48.72968740497614, 129.39781782442043 49.44060008401544, 127.65740000000028 49.760270000000105, 127.28745568248485 50.73979726826548, 126.93915652883766 51.35389415140592, 126.56439904185697 51.7842554795327, 125.94634891164617 52.79279857035698, 125.06821129771038 53.16104482686886, 123.57146999999998 53.45880000000005, 122.24574791879283 53.431725979213695, 121.00308475147017 53.25140106873119, 120.17708865771681 52.75388621684124, 120.72578901579197 52.516226304730935, 120.7382 51.96411000000006, 120.18208000000016 51.64355000000012, 119.27939000000003 50.58292, 119.2884607280258 50.142882798862004, 117.8792444194264 49.510983384796965, 116.67880089728612 49.888531399121405, 115.48569542853136 49.80517731383475, 114.96210981655018 50.140247300815126, 114.36245649623527 50.24830272073741, 112.89773969935436 49.54356537535699, 111.58123091028662 49.37796824807769, 110.66201053267878 49.13012807880585, 109.40244917199664 49.292960516957635, 108.47516727095129 49.28254771585074, 107.86817589725095 49.793705145865815, 106.8888041524553 50.27429596618032, 105.88659142458675 50.406019192092224, 104.62158 50.27532000000019, 103.67654544476022 50.089966132195116, 102.25589000000008 50.51056000000011, 102.06521000000004 51.25991000000005, 100.88948042196262 51.51685578063832, 99.98173221232354 51.63400625264399, 98.86149051310034 52.04736603454669, 97.82573978067431 51.01099518493318, 98.23176150919156 50.422400621128745, 97.25976000000014 49.72605000000004, 95.8140200000002 49.97746000000012, 94.81594933469873 50.01343333597085, 94.14756635943559 50.48053660745717, 93.10421000000002 50.49529000000001, 92.23471154171968 50.80217072204172, 90.71366743364068 50.33181183532109, 88.80556684769552 49.47052073831242, 87.75126427607671 49.297197984405486, 87.35997033076265 49.21498078062912, 86.82935672398963 49.82667470966817, 85.54126997268247 49.69285858824816, 85.11555952346203 50.11730296487764, 84.41637739455308 50.311399644565824, 83.93511478061885 50.88924551045358, 83.38300377801238 51.069182847693924, 81.94598554883993 50.81219594990637, 80.56844689323549 51.38833649352847, 80.03555952344169 50.86475088154725, 77.80091556184425 53.404414984747575, 76.52517947785475 54.17700348572714, 76.89110029491343 54.49052440044193, 74.38482000000016 53.54685000000012, 73.42567874542044 53.489810289109755, 73.5085160663844 54.0356167669766, 72.22415001820218 54.376655381886735, 71.18013105660941 54.13328522400826, 70.86526655465514 55.169733588270105, 69.06816694527288 55.38525014914353, 68.16910037625883 54.97039175070432, 65.66687000000002 54.60125000000011, 65.17853356309593 54.35422781027211, 61.43660000000017 54.00625000000002, 60.978066440683165 53.66499339457914, 61.699986199800605 52.97999644633427, 60.73999311711458 52.71998647725775, 60.92726850774028 52.44754832621504, 59.967533807215545 51.9604204372157, 61.58800337102417 51.272658799843214, 61.337424350840934 50.79907013610426, 59.93280724471549 50.842194118851864, 59.642282342370606 50.545442206415714, 58.363320000000044 51.06364000000002, 56.77798000000013 51.043550000000096, 55.71694000000002 50.62171000000018, 54.532878452376224 51.02623973245932, 52.32872358583097 51.718652248738124, 50.76664839051216 51.6927623561599, 48.70238162618102 50.60512848571284, 48.57784142435753 49.87475962991567, 47.54948042174931 50.454698391311126, 46.75159630716274 49.35600576435377, 47.04367150247651 49.152038886097614, 46.46644575377627 48.39415233010493, 47.31524000000013 47.7158500000001, 48.05725000000001 47.74377000000004, 48.694733514201744 47.07562816017793, 48.59325000000018 46.56104000000005, 49.10116000000011 46.399330000000134)), ((93.77766000000001 81.0246, 95.94089500000001 81.2504, 97.88385 80.74697500000002, 100.186655 79.780135, 99.93976 78.88094, 97.75794 78.75619999999999, 94.97259 79.044745, 93.31288 79.4265, 92.5454 80.14379000000001, 91.18107000000002 80.34146000000001, 93.77766000000001 81.0246)), ((102.837815 79.28129, 105.37243000000001 78.71334, 105.07547000000002 78.30689, 99.43814 77.921, 101.2649 79.23399, 102.08635 79.34641, 102.837815 79.28129)), ((138.831075 76.13676000000001, 141.47161499999999 76.09289, 145.086285 75.562625, 144.3 74.82000000000001, 140.61381 74.84768, 138.95544 74.61148, 136.97439 75.26167000000001, 137.51176 75.94917, 138.831075 76.13676000000001)), ((148.22223 75.345845, 150.73167 75.08406, 149.575925 74.68892, 147.977465 74.778355, 146.11919 75.17298, 146.358485 75.49682, 148.22223 75.345845)), ((139.86312 73.36983000000001, 140.81171 73.76506, 142.06207 73.85758, 143.48283 73.47525, 143.60385 73.21244, 142.08763000000002 73.20544, 140.03815500000002 73.31692000000001, 139.86312 73.36983000000001)), ((44.84695804218114 80.58980988231714, 46.79913862487123 80.77191762971368, 48.31847741068461 80.78400991486998, 48.52280602396667 80.51456899690017, 49.097189568890855 80.7539859077084, 50.03976769389462 80.91888540315178, 51.522932977103665 80.69972565380193, 51.13618655783128 80.54728017854093, 49.79368452332071 80.4154277615482, 48.89441124857755 80.33956675894375, 48.75493655782177 80.17546824820089, 47.58611901224418 80.01018117951533, 46.50282596210963 80.2472468126543, 47.07245527526294 80.55942414012951, 44.84695804218114 80.58980988231714)), ((22.731098667092652 54.327536932993326, 20.892244500418627 54.31252492941253, 19.660640089606403 54.42608388937393, 19.888481479581287 54.86616038677151, 21.268448927503467 55.190481675835315, 22.315723504330577 55.015298570365864, 22.75776370615526 54.85657440858138, 22.65105187347254 54.582740993866736, 22.731098667092652 54.327536932993326)), ((53.50828982932515 73.7498139513002, 55.90245893740766 74.62748647734536, 55.631932814359686 75.08141225859718, 57.86864383324885 75.60939036732326, 61.170044386647476 76.25188345000812, 64.49836836127017 76.43905548776927, 66.21097700385513 76.80978221303117, 68.1570597675348 76.93969676381293, 68.85221113472508 76.5448113064546, 68.1805725442276 76.23364166940907, 64.63732628770302 75.73775462513625, 61.58350752141476 75.26088450794684, 58.47708214705335 74.30905630156285, 56.98678551618803 73.33304352486623, 55.419335971910925 72.37126760526603, 55.62283776227633 71.54059479439032, 57.535692579992315 70.72046397570212, 56.94497928246388 70.63274323188666, 53.67737511578417 70.76265778266846, 53.412016635965394 71.20666168892022, 51.601894565645665 71.47475901965045, 51.455753615124216 72.01488108996513, 52.47827518088354 72.22944163684097, 52.44416873557088 72.77473135038481, 54.42761355979758 73.6275475124976, 53.50828982932515 73.7498139513002)), ((142.91461551327654 53.704577541714784, 143.2608476096321 52.74076040303906, 143.23526777564763 51.75666026468876, 143.64800744036285 50.747600409541505, 144.6541475770856 48.97639069273754, 143.1739278505172 49.306551418650315, 142.55866824765013 47.86157501890495, 143.53349246640403 46.83672801369252, 143.50527713437265 46.137907619809525, 142.74770063697383 46.74076487892651, 142.09203006405454 45.966755276058834, 141.906925083585 46.80592886004656, 142.01844282447087 47.78013296161296, 141.90444461483503 48.85918854429957, 142.1358000022057 49.61516307229739, 142.17998335181528 50.9523424342819, 141.59407596249002 51.9354348822025, 141.6825460145737 53.301966457728795, 142.60693403541075 53.762145087287934, 142.20974897681543 54.225475979216874, 142.65478641171302 54.36588084575389, 142.91461551327654 53.704577541714784)), ((-174.92825000000002 67.20589000000001, -175.01425000000003 66.58435, -174.33983000000003 66.33556, -174.57182 67.06219, -171.85731 66.91308000000001, -169.89958000000001 65.97724, -170.89107 65.54138999999999, -172.53025000000002 65.43791, -172.555 64.46079, -172.95533 64.25269, -173.89184 64.2826, -174.65392000000003 64.63125000000001, -175.98353 64.92288, -176.20716 65.35667000000001, -177.22266 65.52024, -178.35993000000002 65.39052000000001, -178.90332000000004 65.74044, -178.68610999999999 66.11211, -179.88377 65.87456, -179.43268 65.40411, -180 64.9797087021984, -180 68.96363636363635, -177.55000000000004 68.2, -174.92825000000002 67.20589000000001)), ((-178.69378000000003 70.89302, -180 70.83219920854673, -180 71.51571433642827, -179.871875 71.55762000000001, -179.02433000000002 71.55553, -177.57794500000003 71.26948, -177.663575 71.13277000000001, -178.69378000000003 70.89302)))\">MULTIPOLYGON (((178.7253 71.0988, 180<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((16.344976840895242 -28.5767050106977, 16.824017368240902 -28.08216155366447, 17.218928663815404 -28.35594329194681, 17.387497185951503 -28.78351409272978, 17.83615197110953 -28.85637786226132, 18.464899122804752 -29.04546192801728, 19.002127312911085 -28.972443129188868, 19.894734327888614 -28.461104831660776, 19.895767856534434 -24.76779021576059, 20.16572553882719 -24.91796192800077, 20.75860924651184 -25.86813648855145, 20.66647016773544 -26.477453301704923, 20.88960900237174 -26.828542982695915, 21.605896030369394 -26.726533705351756, 22.105968865657868 -26.280256036079138, 22.57953169118059 -25.979447523708146, 22.8242712745149 -25.50045867279477, 23.312096795350186 -25.26868987396572, 23.73356977712271 -25.390129489851617, 24.211266717228796 -25.670215752873574, 25.025170525825786 -25.7196700985769, 25.66466637543772 -25.486816094669713, 25.76584882986521 -25.17484547292368, 25.94165205252216 -24.69637338633322, 26.4857532081233 -24.616326592713104, 26.786406691197413 -24.240690606383485, 27.119409620886245 -23.574323011979775, 28.01723595552525 -22.82775359465908, 29.43218834810904 -22.091312758067588, 29.839036899542972 -22.102216485281176, 30.322883335091774 -22.271611830333935, 30.65986535006709 -22.151567478119915, 31.19140913262129 -22.2515096981724, 31.670397983534656 -23.658969008073864, 31.930588820124253 -24.36941659922254, 31.75240848158188 -25.484283949487413, 31.83777794772806 -25.84333180105135, 31.333157586397903 -25.66019052500895, 31.04407962415715 -25.731452325139443, 30.949666782359913 -26.02264902110415, 30.67660851412964 -26.398078301704608, 30.68596194837448 -26.743845310169533, 31.28277306491333 -27.285879408478998, 31.86806033705108 -27.177927341421277, 32.07166548028107 -26.73382008230491, 32.830120477028885 -26.742191664336197, 32.580264926897684 -27.470157566031816, 32.46213260267845 -28.301011244420557, 32.20338870619304 -28.75240488049007, 31.521001417778876 -29.257386976846256, 31.325561150851 -29.401977634398914, 30.901762729625347 -29.909956963828037, 30.62281334811382 -30.42377573010613, 30.05571618014278 -31.140269463832958, 28.92555260591954 -32.1720411109725, 28.2197558936771 -32.771952813448856, 27.464608188595975 -33.2269637997788, 26.419452345492825 -33.61495045342619, 25.90966434093349 -33.6670402971764, 25.780628289500697 -33.94464609144834, 25.172861769315972 -33.796851495093584, 24.677853224392123 -33.98717579522455, 23.594043409934642 -33.794474379208154, 22.988188917744736 -33.91643075941698, 22.574157342222236 -33.86408253350531, 21.542799106541025 -34.258838799782936, 20.689052768647002 -34.417175388325234, 20.071261020597632 -34.79513681410799, 19.61640506356457 -34.81916635512371, 19.193278435958717 -34.46259897230979, 18.85531456876987 -34.444305515278465, 18.42464318204938 -33.99787281670897, 18.377410922934615 -34.13652068454807, 18.24449913907992 -33.86775156019803, 18.250080193767445 -33.28143075941444, 17.92519046394844 -32.61129078545343, 18.247909783611192 -32.42913136162457, 18.22176150887148 -31.66163298922567, 17.56691775886887 -30.725721123987547, 17.064416131262703 -29.878641045859162, 17.062917514726223 -29.875953871379984, 16.344976840895242 -28.5767050106977), (28.978262566857243 -28.95559661226171, 28.541700066855498 -28.64750172293757, 28.074338413207784 -28.851468601193588, 27.532511020627478 -29.24271087007536, 26.999261915807637 -29.875953871379984, 27.749397006956485 -30.645105889612225, 28.107204624145425 -30.54573211031495, 28.29106937023991 -30.2262167294543, 28.84839969250774 -30.070050551068256, 29.018415154748027 -29.74376555757737, 29.32516645683259 -29.257386976846256, 28.978262566857243 -28.95559661226171)))\">MULTIPOLYGON (((16.344976840895242 -2<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-117.12775999999985 32.53533999999996, -115.99134999999995 32.61239000000012, -114.72138999999993 32.72082999999992, -114.815 32.52528000000001, -113.30498 32.03914000000009, -111.02361000000002 31.334719999999948, -109.03500000000003 31.341940000000136, -108.24193999999994 31.342220000000054, -108.24000000000001 31.754853718166373, -106.50758999999988 31.754520000000014, -106.1429 31.399950000000047, -105.63159000000002 31.08383000000009, -105.03737000000001 30.644019999999955, -104.70574999999997 30.121730000000014, -104.4569699999999 29.571960000000047, -103.94 29.27000000000004, -103.11000000000001 28.970000000000027, -102.48000000000002 29.75999999999999, -101.66239999999999 29.77930000000009, -100.95759999999996 29.380710000000136, -100.45584000000002 28.69612000000012, -100.10999999999996 28.110000000000127, -99.51999999999992 27.54000000000002, -99.30000000000001 26.840000000000032, -99.01999999999992 26.37000000000006, -98.23999999999995 26.06000000000006, -97.52999999999992 25.84000000000009, -97.14000830767071 25.8699974634784, -97.52807247596655 24.9921440699203, -97.70294552284224 24.272343044526735, -97.77604183631905 22.93257986092766, -97.87236670611111 22.44421173755336, -97.69904395220419 21.898689480064263, -97.38895952023677 21.411018988525825, -97.18933346229329 20.635433254473128, -96.52557552772032 19.890930894444068, -96.29212724484177 19.320371405509547, -95.90088497595997 18.82802419684873, -94.83906348344271 18.562717393462208, -94.42572953975622 18.144370835843347, -93.5486512926824 18.423836981677937, -92.7861138577835 18.52483856859226, -92.0373481920904 18.704569200103435, -91.40790340855926 18.87608327888023, -90.77186987991087 19.28412038825678, -90.53358985061305 19.8674181177513, -90.45147599970124 20.707521877520435, -90.2786183336849 20.999855454995554, -89.60132117385149 21.26172577563449, -88.54386633986286 21.49367544197662, -87.65841651075772 21.45884552661198, -87.05189022494807 21.5435431991383, -86.81198238803296 21.331514797444754, -86.84590796583262 20.849864610268355, -87.38329118523586 20.25540477139873, -87.62105445021075 19.64655304613592, -87.43675045444178 19.47240346931227, -87.58656043165593 19.04013011319074, -87.83719112827151 18.25981598558343, -88.09066402866318 18.51664785407405, -88.3000310940937 18.4999822046599, -88.49012285027935 18.486830552641607, -88.84834387892661 17.883198147040233, -89.02985734735182 18.001511338772488, -89.15090938999553 17.95546763760042, -89.14308041050333 17.808318996649405, -90.06793351923098 17.819326076727478, -91.00151994501596 17.81759491624571, -91.00226925328421 17.25465770107418, -91.45392127151516 17.252177232324172, -91.08167009150065 16.918476670799407, -90.71182186558772 16.687483018454728, -90.60084672724093 16.47077789963879, -90.43886695022204 16.410109768128095, -90.46447262242266 16.069562079324655, -91.74796017125595 16.066564846251765, -92.2292486234063 15.251446641495875, -92.08721594925207 15.064584662328441, -92.20322953974733 14.830102850804069, -92.22775000686983 14.538828640190928, -93.35946387406176 15.615429592343673, -93.87516883011853 15.940164292865916, -94.69165646033014 16.200975246642884, -95.25022701697304 16.128318182840644, -96.05338212765332 15.752087917539598, -96.55743404822829 15.653515122942792, -97.26359249549665 15.917064927631316, -98.01302995480961 16.107311713113916, -98.94767574745651 16.566043402568766, -99.69739742714705 16.70616404872817, -100.82949886758132 17.17107107184205, -101.66608862995446 17.649026394109626, -101.91852800170022 17.916090196193977, -102.47813208698892 17.975750637275098, -103.50098954955808 18.29229462327885, -103.91752743204682 18.74857168220001, -104.9920096504755 19.316133938061682, -105.49303849976144 19.946767279535436, -105.73139604370766 20.434101874264115, -105.39777299683135 20.531718654863425, -105.50066077352443 20.81689504646613, -105.27075232625793 21.07628489835514, -105.26581722697404 21.42210358325235, -105.6031609769754 21.87114594165257, -105.69341386597313 22.269080308516152, -106.02871639689897 22.773752346278627, -106.90998043498837 23.767774359628902, -107.91544877809139 24.54891531015295, -108.40190487347098 25.172313951105934, -109.26019873740665 25.58060944264406, -109.44408932171734 25.82488393808768, -109.29164384645628 26.442934068298428, -109.80145768923182 26.676175645447927, -110.3917317370857 27.16211497650454, -110.64101884646163 27.859876003525528, -111.17891883018785 27.94124054616907, -111.75960689985163 28.46795258230395, -112.2282346260904 28.95440867768349, -112.27182369672869 29.266844387320077, -112.80959448937398 30.02111359305235, -113.16381059451868 30.786880804969428, -113.14866939985717 31.170965887978923, -113.87188106978186 31.567608344035193, -114.20573666060352 31.524045111613134, -114.77645117883503 31.79953217216115, -114.93669979537214 31.393484605427602, -114.7712318591735 30.913617255165263, -114.67389929895177 30.162681179315996, -114.33097449426293 29.750432440707414, -113.58887508833544 29.061611436473015, -113.42405310754054 28.82617361095123, -113.27196936730553 28.7547826197399, -113.14003943566439 28.41128937429596, -112.9622983467965 28.42519033458251, -112.76158708377488 27.780216783147523, -112.45791052941166 27.52581370697476, -112.2449519519368 27.17172679291076, -111.61648902061921 26.662817287700477, -111.28467464887302 25.732589830014433, -110.9878193835724 25.294606228124564, -110.71000688357134 24.82600434010186, -110.65504899782889 24.298594672131117, -110.17285620811344 24.265547593680424, -109.77184709352855 23.811182562754198, -109.40910437705571 23.36467234953625, -109.43339230023292 23.1855876734287, -109.85421932660171 22.818271592698068, -110.03139197471444 22.823077500901206, -110.29507097048366 23.43097321216669, -110.94950130902805 24.000964260345995, -111.6705684070127 24.484423122652515, -112.18203589562148 24.738412787367167, -112.14898881717085 25.47012523040405, -112.3007108223797 26.012004299416617, -112.77729671919155 26.32195954030317, -113.46467078332194 26.768185533143424, -113.59672990604383 26.639459540304472, -113.84893673384425 26.90006378835244, -114.46574662968004 27.142090358991368, -115.05514217818501 27.72272675222291, -114.98225257043742 27.798200181585116, -114.57036556685495 27.74148529714489, -114.19932878299926 28.115002549750557, -114.16201839888464 28.566111965442303, -114.93184221073665 29.27947927501549, -115.518653937627 29.5563615992354, -115.88736528202958 30.180793768834178, -116.25835038945291 30.836464341753583, -116.72152625208497 31.635743720012044, -117.12775999999985 32.53533999999996)))\">MULTIPOLYGON (((-117.12775999999985 3<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-57.62513342958296 -30.21629485445426, -56.976025763564735 -30.109686374636127, -55.97324459494094 -30.883075860316303, -55.601510179249345 -30.853878676071393, -54.57245154480512 -31.494511407193748, -53.78795162618219 -32.047242526987624, -53.209588995971544 -32.727666110974724, -53.6505439927181 -33.20200408298183, -53.373661668498244 -33.768377780900764, -53.806425950726535 -34.39681487400223, -54.93586605489773 -34.952646579733624, -55.67408972840329 -34.75265878676407, -56.21529700379607 -34.85983570733742, -57.1396850246331 -34.430456231424245, -57.81786068381551 -34.4625472958775, -58.42707414410439 -33.909454441057576, -58.349611172098875 -33.26318897881541, -58.13264767112145 -33.040566908502015, -58.14244035504076 -32.044503676076154, -57.87493730328188 -31.016556084926208, -57.62513342958296 -30.21629485445426)))\">MULTIPOLYGON (((-57.62513342958296 -3<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-53.373661668498244 -33.768377780900764, -53.6505439927181 -33.20200408298183, -53.209588995971544 -32.727666110974724, -53.78795162618219 -32.047242526987624, -54.57245154480512 -31.494511407193748, -55.601510179249345 -30.853878676071393, -55.97324459494094 -30.883075860316303, -56.976025763564735 -30.109686374636127, -57.62513342958296 -30.21629485445426, -56.29089962423908 -28.852760512000895, -55.16228634298457 -27.881915378533463, -54.490725267135524 -27.47475676850579, -53.64873531758789 -26.92347258881609, -53.628348965048744 -26.124865004177472, -54.13004960795439 -25.547639255477254, -54.625290696823576 -25.739255466415514, -54.42894609233059 -25.162184747012166, -54.29347632507745 -24.570799655863965, -54.29295956075452 -24.02101409271073, -54.65283423523513 -23.83957813893396, -55.02790178080955 -24.00127369557523, -55.40074723979542 -23.956935316668805, -55.517639329639636 -23.571997572526637, -55.610682745981144 -22.655619398694846, -55.79795813660691 -22.356929620047822, -56.47331743022939 -22.086300144135283, -56.8815095689029 -22.28215382252148, -57.937155727761294 -22.090175876557172, -57.8706739976178 -20.73268767668195, -58.166392381408045 -20.176700941653678, -57.85380164247451 -19.96999521248619, -57.949997321185826 -19.40000416430682, -57.67600887717431 -18.96183969490403, -57.49837114117099 -18.174187513911292, -57.734558274961 -17.55246835700777, -58.28080400250225 -17.271710300366017, -58.38805843772404 -16.877109063385276, -58.24121985536668 -16.299573256091293, -60.158389655179036 -16.258283786690086, -60.54296566429515 -15.093910414289596, -60.251148851142936 -15.07721892665932, -60.26432634137737 -14.645979099183641, -60.45919816755003 -14.354007256734555, -60.503304002511136 -13.775954685117659, -61.08412126325565 -13.479383640194598, -61.71320431176078 -13.489202162330052, -62.127080857986385 -13.198780612849724, -62.803060268796386 -13.000653171442686, -63.19649878605057 -12.627032565972435, -64.3163529120316 -12.461978041232193, -65.40228146021303 -11.566270440317155, -65.32189876978302 -10.895872084194679, -65.44483700220539 -10.511451104375432, -65.33843522811642 -9.761987806846392, -66.6469083319628 -9.931331475466862, -67.17380123561074 -10.306812432499612, -68.04819230820539 -10.712059014532485, -68.27125362819326 -11.01452117273682, -68.78615759954948 -11.03638030359628, -69.52967810736496 -10.951734307502194, -70.0937522040469 -11.123971856331012, -70.54868567572841 -11.009146823778465, -70.48189388699117 -9.490118096558845, -71.30241227892154 -10.079436130415374, -72.18489071316985 -10.053597914269432, -72.56303300646564 -9.520193780152717, -73.22671342639016 -9.462212823121234, -73.01538265653255 -9.032833347208062, -73.57105933296707 -8.424446709835834, -73.98723548042966 -7.523829847853065, -73.7234014553635 -7.340998630404414, -73.72448666044164 -6.91859547285064, -73.1200274319236 -6.629930922068239, -73.21971126981461 -6.089188734566078, -72.9645072089412 -5.7412513159448935, -72.89192765978726 -5.274561455916981, -71.74840572781655 -4.593982842633011, -70.92884334988358 -4.401591485210368, -70.7947688463023 -4.251264743673303, -69.89363521999663 -4.2981869441943275, -69.44410193548961 -1.5562871232198177, -69.42048580593223 -1.1226185034264091, -69.5770653957766 -0.549991957200163, -70.02065589057005 -0.1851563452195393, -70.01556576198931 0.5414142928042054, -69.45239600287246 0.7061587589506929, -69.25243404811906 0.6026508650700748, -69.21863766140018 0.9856765812174331, -69.80459672715773 1.0890811222334662, -69.81697323269162 1.7148052026396243, -67.86856502955884 1.6924551456733923, -67.5378100246747 2.03716278727633, -67.2599975246736 1.7199986840849562, -67.0650481838525 1.130112209473225, -66.87632585312258 1.253360500489336, -66.32576514348496 0.7244522159820121, -65.54826738143757 0.7892544620760303, -65.35471330428837 1.0952822941085003, -64.61101192895987 1.3287305769870417, -64.19930579289051 1.49285492594602, -64.08308549666609 1.9163691267940803, -63.368788011311665 2.200899562993129, -63.42286739770512 2.4110676131241746, -64.2699991522658 2.497005520025567, -64.40882788761792 3.126786200366624, -64.3684944322141 3.797210394705246, -64.81606401229402 4.056445217297423, -64.62865943058755 4.14848094320925, -63.88834286157416 4.020530096854571, -63.093197597899106 3.7705711938587854, -62.804533047116706 4.006965033377952, -62.08542965355913 4.162123521334308, -60.96689327660154 4.536467596856639, -60.601179165271944 4.91809804933213, -60.73357418480372 5.200277207861901, -60.21368343773133 5.244486395687602, -59.980958624904886 5.014061184098139, -60.11100236676738 4.574966538914083, -59.767405768458715 4.423502915866607, -59.53803992373123 3.9588025984819377, -59.815413174057866 3.6064985213320853, -59.97452490908456 2.755232652188056, -59.71854570172675 2.2496304386443597, -59.64604366722126 1.786893825686789, -59.03086157900265 1.3176976586927225, -58.540012986878295 1.2680882836925207, -58.429477098205965 1.4639419620787208, -58.11344987652502 1.5071951359070253, -57.66097103537737 1.6825849471056387, -57.335822923396904 1.9485377058957594, -56.78270423036083 1.8637108422886541, -56.539385748914555 1.8995226098669207, -55.995698004771754 1.8176671411166012, -55.905600145070885 2.0219957543986595, -56.0733418442903 2.2207949894254995, -55.973322109589375 2.510363877773017, -55.569755011606 2.4215062524471307, -55.09758744975514 2.5237480737366127, -54.524754197799716 2.3118488631237852, -54.08806250671725 2.105556545414629, -53.77852067728892 2.3767027856500818, -53.554839240113544 2.334896551925951, -53.41846513529531 2.0533891870159806, -52.939657151894956 2.1248576928756364, -52.55642473001842 2.504705308437053, -52.249337531123956 3.241094468596245, -51.65779741067889 4.156232408053029, -51.31714636901086 4.203490505383954, -51.069771287629656 3.650397650564031, -50.508875291533656 1.901563828942457, -49.97407589374506 1.736483465986069, -49.94710079608871 1.0461896834312228, -50.699251268096916 0.2229841170216815, -50.38821082213214 -0.0784445125368194, -48.62056677915632 -0.2354891902718208, -48.58449662941659 -1.2378052710050014, -47.824956427590635 -0.5816179337628, -46.566583624851226 -0.941027520352776, -44.905703090990414 -1.551739597178134, -44.417619187993665 -2.137750339367976, -44.58158850765578 -2.691308282078524, -43.418791266440195 -2.383110039889793, -41.47265682632825 -2.9120183243971165, -39.97866533055404 -2.873054294449041, -38.50038347019657 -3.7006523576033956, -37.2232521225352 -4.820945733258917, -36.45293738457639 -5.109403578312154, -35.59779578301047 -5.149504489770649, -35.23538896334756 -5.464937432480247, -34.89602983248683 -6.738193047719711, -34.729993455533034 -7.343220716992967, -35.12821204277422 -8.996401462442286, -35.636966518687714 -9.649281508017815, -37.046518724097 -11.040721123908803, -37.68361161960736 -12.171194756725823, -38.42387651218844 -13.038118584854288, -38.67388709161652 -13.057652276260619, -38.953275722802545 -13.793369642800023, -38.88229814304965 -15.667053724838768, -39.16109249526431 -17.208406670808472, -39.2673392400564 -17.867746270420483, -39.58352149103423 -18.262295830968938, -39.76082333022764 -19.59911345792741, -40.77474077001034 -20.904511814052423, -40.94475623225061 -21.93731698983781, -41.754164191238225 -22.370675551037458, -41.98828426773656 -22.970070489190896, -43.07470374202475 -22.96769337330547, -44.64781185563781 -23.351959323827842, -45.35213578955992 -23.796841729428582, -46.47209326840554 -24.088968601174543, -47.64897233742066 -24.885199069927722, -48.4954581365777 -25.877024834905654, -48.64100480812774 -26.623697605090932, -48.474735887228654 -27.17591196056189, -48.661520351747626 -28.18613453543572, -48.8884574041574 -28.674115085567884, -49.587329474472675 -29.224469089476337, -50.696874152211485 -30.98446502047296, -51.576226162306156 -31.77769825615321, -52.256081305538046 -32.24536996839467, -52.712099982297694 -33.19657805759118, -53.373661668498244 -33.768377780900764)))\">MULTIPOLYGON (((-53.373661668498244 -<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-69.89363521999663 -4.2981869441943275, -70.7947688463023 -4.251264743673303, -70.92884334988358 -4.401591485210368, -71.74840572781655 -4.593982842633011, -72.89192765978726 -5.274561455916981, -72.9645072089412 -5.7412513159448935, -73.21971126981461 -6.089188734566078, -73.1200274319236 -6.629930922068239, -73.72448666044164 -6.91859547285064, -73.7234014553635 -7.340998630404414, -73.98723548042966 -7.523829847853065, -73.57105933296707 -8.424446709835834, -73.01538265653255 -9.032833347208062, -73.22671342639016 -9.462212823121234, -72.56303300646564 -9.520193780152717, -72.18489071316985 -10.053597914269432, -71.30241227892154 -10.079436130415374, -70.48189388699117 -9.490118096558845, -70.54868567572841 -11.009146823778465, -70.0937522040469 -11.123971856331012, -69.52967810736496 -10.951734307502194, -68.66507971868963 -12.561300144097173, -68.88007951523997 -12.899729099176653, -68.92922380234954 -13.602683607643009, -68.9488866848366 -14.453639418193283, -69.33953467474701 -14.953195489158832, -69.16034664577495 -15.323973890853019, -69.38976416693471 -15.660129082911652, -68.9596353827533 -16.50069793057127, -69.59042375352405 -17.580011895419332, -69.85844356960587 -18.092693780187012, -70.37257239447771 -18.34797535570887, -71.37525021023693 -17.773798516513857, -71.46204077827113 -17.363487644116383, -73.44452958850042 -16.359362888252996, -75.23788265654144 -15.265682875227782, -76.00920508492995 -14.649286390850321, -76.42346920439775 -13.823186944232432, -76.25924150257417 -13.535039157772943, -77.10619238962184 -12.22271615972082, -78.09215287953464 -10.377712497604065, -79.03695309112695 -8.386567884965892, -79.44592037628485 -7.93083342858386, -79.76057817251005 -7.194340915560084, -80.53748165558608 -6.541667575713717, -81.24999630402642 -6.136834405139183, -80.92634680858244 -5.690556735866565, -81.41094255239946 -4.7367648250554595, -81.09966956248937 -4.036394138203697, -80.30256059438722 -3.4048564591647126, -80.18401485870967 -3.8211617977080437, -80.46929460317695 -4.0592867977089995, -80.44224199087216 -4.425724379090674, -80.02890804718561 -4.3460909969288934, -79.62497921417618 -4.454198093283495, -79.20528906931773 -4.959128513207389, -78.63989722361234 -4.547784112164074, -78.45068396677564 -3.873096612161376, -77.83790483265861 -3.003020521663103, -76.63539425322672 -2.6086776668438176, -75.54499569365204 -1.5616097957458803, -75.23372270374195 -0.9114169246495294, -75.37322323271385 -0.1520317521204504, -75.10662451852008 -0.0572054988648603, -74.44160051135597 -0.5308200008198867, -74.12239518908906 -1.002832533373848, -73.6595035468346 -1.2604912247811342, -73.07039221870724 -2.3089543595509525, -72.32578650581365 -2.434218031426454, -71.7747607082854 -2.169789727388938, -71.41364579942979 -2.3428024227021282, -70.81347571479196 -2.2568645158007428, -70.04770850287485 -2.725156345229699, -70.69268205430971 -3.742872002785859, -70.39404395209499 -3.7665914852078255, -69.89363521999663 -4.2981869441943275)))\">MULTIPOLYGON (((-69.89363521999663 -4<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-66.87632585312258 1.253360500489336, -67.0650481838525 1.130112209473225, -67.2599975246736 1.7199986840849562, -67.5378100246747 2.03716278727633, -67.86856502955884 1.6924551456733923, -69.81697323269162 1.7148052026396243, -69.80459672715773 1.0890811222334662, -69.21863766140018 0.9856765812174331, -69.25243404811906 0.6026508650700748, -69.45239600287246 0.7061587589506929, -70.01556576198931 0.5414142928042054, -70.02065589057005 -0.1851563452195393, -69.5770653957766 -0.549991957200163, -69.42048580593223 -1.1226185034264091, -69.44410193548961 -1.5562871232198177, -69.89363521999663 -4.2981869441943275, -70.39404395209499 -3.7665914852078255, -70.69268205430971 -3.742872002785859, -70.04770850287485 -2.725156345229699, -70.81347571479196 -2.2568645158007428, -71.41364579942979 -2.3428024227021282, -71.7747607082854 -2.169789727388938, -72.32578650581365 -2.434218031426454, -73.07039221870724 -2.3089543595509525, -73.6595035468346 -1.2604912247811342, -74.12239518908906 -1.002832533373848, -74.44160051135597 -0.5308200008198867, -75.10662451852008 -0.0572054988648603, -75.37322323271385 -0.1520317521204504, -75.8014658271166 0.0848013370732019, -76.29231441924097 0.4160472680641192, -76.5763797675494 0.256935533037435, -77.4249843004304 0.395686753741117, -77.66861284047044 0.8258930525709616, -77.85506140817952 0.8099250349927729, -78.85525875518871 1.380923773601822, -78.99093522817104 1.6913699405952514, -78.61783138702371 1.766404120283056, -78.66211808949785 2.2673554549204766, -78.42761043975733 2.629555568854215, -77.93154252797149 2.6966057397529255, -77.51043128122501 3.325016994638247, -77.12768978545526 3.8496361352653565, -77.49627193877703 4.087606105969428, -77.3076012844794 4.6679841170394525, -77.53322058786573 5.582811997902497, -77.31881507028675 5.84535411216136, -77.47666073272228 6.691116441266303, -77.88157141794525 7.223771267114785, -77.7534138658614 7.709839789252143, -77.43110795765699 7.638061224798734, -77.24256649444008 7.935278225125444, -77.47472286651133 8.524286200388218, -77.35336076527386 8.67050466555807, -76.83667395700357 8.638749497914716, -76.08638383655786 9.336820583529487, -75.67460018584006 9.443248195834599, -75.66470414905618 9.774003200718738, -75.48042599150335 10.618990383339309, -74.90689510771199 11.083044745320322, -74.27675269234489 11.102035834187587, -74.1972226630477 11.310472723836867, -73.41476396350029 11.22701528568548, -72.62783525255963 11.731971543825523, -72.23819495307892 11.955549628136326, -71.75409013536864 12.437303168177309, -71.3998223537917 12.376040757695293, -71.13746110704588 12.112981879113505, -71.3315836249503 11.776284084515808, -71.97392167833829 11.60867157637712, -72.22757544624294 11.10870209395324, -72.61465776232521 10.821975409381778, -72.9052860175347 10.450344346554772, -73.02760413276957 9.736770331252444, -73.30495154488005 9.151999823437606, -72.7887298245004 9.085027167187334, -72.6604947577681 8.625287787302682, -72.43986223009796 8.405275376820029, -72.36090064155597 8.002638454617895, -72.47967892117885 7.632506008327354, -72.44448727078807 7.423784898300482, -72.19835242378188 7.340430813013683, -71.96017574734864 6.991614895043539, -70.67423356798152 7.087784735538719, -70.09331295437242 6.96037649172311, -69.38947994655712 6.0998605411988365, -68.98531856960236 6.206804917826858, -68.26505245631823 6.153268133972475, -67.69508724635502 6.267318020040647, -67.34143958196557 6.095468044454023, -67.52153194850275 5.556870428891969, -67.74469662135522 5.221128648291668, -67.82301225449355 4.503937282728899, -67.62183590358129 3.8394817163199946, -67.33756384954368 3.5423422306417223, -67.30317318385345 3.31845408773718, -67.8099381171237 2.820655015469569, -67.44709204778631 2.6002808699608693, -67.18129431829307 2.250638129074062, -66.87632585312258 1.253360500489336)))\">MULTIPOLYGON (((-66.87632585312258 1.<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-92.22775000686983 14.538828640190928, -92.20322953974733 14.830102850804069, -92.08721594925207 15.064584662328441, -92.2292486234063 15.251446641495875, -91.74796017125595 16.066564846251765, -90.46447262242266 16.069562079324655, -90.43886695022204 16.410109768128095, -90.60084672724093 16.47077789963879, -90.71182186558772 16.687483018454728, -91.08167009150065 16.918476670799407, -91.45392127151516 17.252177232324172, -91.00226925328421 17.25465770107418, -91.00151994501596 17.81759491624571, -90.06793351923098 17.819326076727478, -89.14308041050333 17.808318996649405, -89.15080603713095 17.015576687075836, -89.22912167026928 15.886937567605171, -88.93061275913527 15.887273464415076, -88.60458614780585 15.70638011317736, -88.51836402052686 15.855389105690975, -88.22502275262202 15.727722479713904, -88.68067969435563 15.346247056535304, -89.15481096063357 15.06641917567481, -89.22522009963127 14.874286200413621, -89.14553504103719 14.678019110569153, -89.35332597528281 14.424132798719086, -89.58734269891656 14.36258616785949, -89.53421932652051 14.244815578666305, -89.72193396682073 14.134228013561696, -90.0646779039966 13.881969509328925, -90.09555457229098 13.735337632700734, -90.60862403030085 13.909771429901951, -91.23241024449605 13.927832342987957, -91.68974667027913 14.126218166556455, -92.22775000686983 14.538828640190928)))\">MULTIPOLYGON (((-92.22775000686983 14<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-60.73357418480372 5.200277207861901, -60.601179165271944 4.91809804933213, -60.96689327660154 4.536467596856639, -62.08542965355913 4.162123521334308, -62.804533047116706 4.006965033377952, -63.093197597899106 3.7705711938587854, -63.88834286157416 4.020530096854571, -64.62865943058755 4.14848094320925, -64.81606401229402 4.056445217297423, -64.3684944322141 3.797210394705246, -64.40882788761792 3.126786200366624, -64.2699991522658 2.497005520025567, -63.42286739770512 2.4110676131241746, -63.368788011311665 2.200899562993129, -64.08308549666609 1.9163691267940803, -64.19930579289051 1.49285492594602, -64.61101192895987 1.3287305769870417, -65.35471330428837 1.0952822941085003, -65.54826738143757 0.7892544620760303, -66.32576514348496 0.7244522159820121, -66.87632585312258 1.253360500489336, -67.18129431829307 2.250638129074062, -67.44709204778631 2.6002808699608693, -67.8099381171237 2.820655015469569, -67.30317318385345 3.31845408773718, -67.33756384954368 3.5423422306417223, -67.62183590358129 3.8394817163199946, -67.82301225449355 4.503937282728899, -67.74469662135522 5.221128648291668, -67.52153194850275 5.556870428891969, -67.34143958196557 6.095468044454023, -67.69508724635502 6.267318020040647, -68.26505245631823 6.153268133972475, -68.98531856960236 6.206804917826858, -69.38947994655712 6.0998605411988365, -70.09331295437242 6.96037649172311, -70.67423356798152 7.087784735538719, -71.96017574734864 6.991614895043539, -72.19835242378188 7.340430813013683, -72.44448727078807 7.423784898300482, -72.47967892117885 7.632506008327354, -72.36090064155597 8.002638454617895, -72.43986223009796 8.405275376820029, -72.6604947577681 8.625287787302682, -72.7887298245004 9.085027167187334, -73.30495154488005 9.151999823437606, -73.02760413276957 9.736770331252444, -72.9052860175347 10.450344346554772, -72.61465776232521 10.821975409381778, -72.22757544624294 11.10870209395324, -71.97392167833829 11.60867157637712, -71.3315836249503 11.776284084515808, -71.36000566271082 11.539993597861212, -71.94704993354651 11.423282375530022, -71.62086829292019 10.969459947142795, -71.63306393094109 10.446494452349029, -72.07417395698451 9.865651353388373, -71.69564409044654 9.072263088411248, -71.26455929226773 9.137194525585983, -71.03999935574339 9.859992784052409, -71.35008378771079 10.211935126176215, -71.40062333849224 10.968969021036015, -70.15529883490652 11.37548167566004, -70.29384334988103 11.846822414594214, -69.94324459499683 12.162307033736099, -69.58430009629747 11.459610907431212, -68.88299923366445 11.443384507691563, -68.23327145045873 10.885744126829946, -68.19412655299763 10.554653225135922, -67.29624854192633 10.54586823164631, -66.227864142508 10.648626817258688, -65.65523759628175 10.200798855017323, -64.89045223657817 10.0772146671913, -64.32947872583374 10.38959870039568, -64.31800655786495 10.64141795495398, -63.07932247582873 10.7017243514386, -61.880946010980196 10.715625311725104, -62.73011898461641 10.420268662960906, -62.388511928950976 9.94820445397464, -61.58876746280194 9.873066921422264, -60.83059668643172 9.381339829948942, -60.67125240745973 8.580174261911878, -60.15009558779618 8.602756862823426, -59.758284878159195 8.367034816924047, -60.5505879380582 7.779602972846178, -60.637972785063766 7.4149999048108555, -60.2956680975624 7.043911444522919, -60.54399919294099 6.856584377464883, -61.15933631045648 6.696077378766319, -61.13941504580795 6.234296779806144, -61.410302903881956 5.959068101419618, -60.73357418480372 5.200277207861901)))\">MULTIPOLYGON (((-60.73357418480372 5.<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((31.19140913262129 -22.2515096981724, 30.65986535006709 -22.151567478119915, 30.322883335091774 -22.271611830333935, 29.839036899542972 -22.102216485281176, 29.43218834810904 -22.091312758067588, 28.794656202924216 -21.63945403410745, 28.021370070108617 -21.485975030200585, 27.72722781750326 -20.851801853114715, 27.724747348753255 -20.49905852629039, 27.296504754350508 -20.391519870691, 26.164790887158485 -19.29308562589494, 25.85039147309473 -18.714412937090536, 25.649163445750162 -18.53602589281899, 25.264225701608012 -17.736539808831417, 26.381935255648926 -17.8460421688579, 26.70677330903564 -17.961228936436484, 27.044427117630732 -17.938026218337434, 27.59824344250276 -17.290830580314008, 28.467906121542683 -16.468400160388846, 28.8258687680285 -16.389748630440614, 28.947463413211267 -16.04305144619444, 29.516834344203147 -15.644677829656388, 30.27425581230511 -15.507786960515213, 30.338954705534544 -15.880839125230246, 31.17306399915768 -15.860943698797874, 31.636498243951195 -16.071990248277885, 31.8520406430406 -16.319417006091378, 32.32823896661023 -16.392074069893752, 32.847638787575846 -16.713398125884616, 32.84986087416439 -17.97905730557718, 32.65488569512715 -18.672089939043495, 32.61199425632489 -19.419382826416275, 32.772707960752626 -19.715592136313298, 32.65974327976258 -20.304290052982317, 32.50869306817344 -20.395292250248307, 32.244988234188014 -21.116488539313693, 31.19140913262129 -22.2515096981724)))\">MULTIPOLYGON (((31.19140913262129 -22<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((19.895767856534434 -24.76779021576059, 19.894734327888614 -28.461104831660776, 19.002127312911085 -28.972443129188868, 18.464899122804752 -29.04546192801728, 17.83615197110953 -28.85637786226132, 17.387497185951503 -28.78351409272978, 17.218928663815404 -28.35594329194681, 16.824017368240902 -28.08216155366447, 16.344976840895242 -28.5767050106977, 15.601818068105816 -27.821247247022804, 15.21047244635946 -27.090955905874047, 14.989710727608553 -26.117371921495156, 14.743214145576331 -25.39292001719538, 14.408144158595833 -23.853014011329847, 14.385716586981149 -22.65665292734069, 14.257714064194175 -22.111208184499958, 13.86864220546866 -21.699036960539978, 13.35249799973744 -20.872834161057504, 12.826845330464494 -19.673165785401665, 12.608564080463621 -19.0453488094877, 11.794918654028066 -18.069129327061916, 11.734198846085121 -17.301889336824473, 12.215461460019355 -17.111668389558083, 12.814081251688407 -16.94134286872407, 13.462362094789967 -16.971211846588773, 14.05850141770901 -17.423380629142663, 14.209706658595024 -17.35310068122572, 18.263309360434164 -17.309950860262006, 18.956186964603603 -17.789094740472258, 21.377176141045567 -17.930636488519696, 23.215048455506064 -17.523116143465984, 24.033861525170778 -17.295843194246324, 24.682349074001507 -17.353410739819473, 25.07695031098226 -17.57882333747662, 25.08444339366457 -17.661815687737374, 24.520705193792537 -17.887124932529936, 24.217364536239213 -17.88934701911849, 23.579005568137717 -18.28126108162006, 23.1968583513393 -17.869038181227786, 21.655040317478978 -18.219146010005225, 20.910641310314535 -18.252218926672022, 20.88113406747587 -21.814327080983148, 19.89545779794068 -21.84915699634787, 19.895767856534434 -24.76779021576059)))\">MULTIPOLYGON (((19.895767856534434 -2<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((-16.71372880702347 13.594958604379855, -17.126106736712615 14.373515733289224, -17.62504269049066 14.729540513564073, -17.18517289882223 14.919477240452862, -16.700706346085923 15.621527411354108, -16.463098110407884 16.13503611903846, -16.12069007004193 16.455662543193384, -15.623666144258692 16.369337063049812, -15.135737270558819 16.587282416240782, -14.577347581428981 16.59826365810281, -14.099521450242179 16.304302273010492, -13.435737677453062 16.03938304286619, -12.830658331747516 15.303691514542948, -12.170750291380301 14.616834214735505, -12.12488745772126 13.994727484589788, -11.927716030311615 13.422075100147396, -11.55339779300543 13.141213690641067, -11.467899135778524 12.754518947800975, -11.51394283695059 12.442987575729418, -11.658300950557932 12.386582749882836, -12.203564825885634 12.465647691289405, -12.27859900557344 12.354440008997287, -12.499050665730564 12.332089952031057, -13.217818162478238 12.575873521367967, -13.700476040084325 12.586182969610194, -15.54847693527401 12.628170070847347, -15.816574266004254 12.515567124883347, -16.147716844130585 12.547761542201187, -16.677451951554573 12.384851589401052, -16.841524624081273 13.15139394780256, -15.931295945692211 13.130284125211332, -15.691000535534995 13.270353094938457, -15.511812506562933 13.278569647672867, -15.141163295949468 13.509511623585238, -14.712197231494628 13.298206691943777, -14.277701788784555 13.280585028532244, -13.844963344772408 13.505041612192002, -14.046992356817482 13.79406789800045, -14.376713833055788 13.625680243377374, -14.687030808968487 13.630356960499784, -15.08173539881382 13.876491807505985, -15.39877031092446 13.86036876063092, -15.624596320039942 13.62358734786956, -16.71372880702347 13.594958604379855)))\">MULTIPOLYGON (((-16.71372880702347 13<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((2.6917016943562544 6.258817246928629, 2.7490625342002204 7.870734361192888, 2.723792758809509 8.50684540448971, 2.912308383810256 9.137607937044322, 3.2203515967021015 9.444152533399702, 3.7054382666259187 10.063210354040208, 3.600070021182802 10.332186184119408, 3.7971122575117136 10.734745591673105, 3.572216424177469 11.32793935795152, 3.611180454125559 11.660167141155968, 3.6806335791258107 12.552903347214226, 3.9672827490488487 12.956108710171575, 4.107945997747322 13.531215725147831, 4.368343540066007 13.747481594289411, 5.443058302440136 13.865923977102227, 6.445426059605637 13.492768459522678, 6.820441928747754 13.115091254117518, 7.330746697630019 13.0980380314612, 7.804671258178786 13.343526923063747, 9.014933302454438 12.826659247280418, 9.524928012742947 12.851102199754479, 10.114814487354693 13.27725189864941, 10.701031935273706 13.246917832894084, 10.989593133191534 13.387322699431195, 11.527803175511394 13.328980007373588, 12.302071160540523 13.037189032437524, 13.083987257548813 13.596147162322495, 13.318701613018561 13.556356309457826, 13.995352817448293 12.461565253138303, 14.181336297266794 12.483656927943116, 14.577177768622533 12.085360826053503, 14.468192172918975 11.904751695193411, 14.415378859116684 11.572368882692075, 13.572949659894562 10.798565985553566, 13.308676385153918 10.160362046748928, 13.167599724997103 9.640626328973411, 12.955467970438974 9.417771714714704, 12.753671502339216 8.717762762888995, 12.218872104550599 8.305824082874324, 12.063946160539558 7.799808457872302, 11.839308709366803 7.397042344589437, 11.74577436691851 6.981382961449754, 11.058787876030351 6.6444267846905944, 10.497375115611419 7.0553577742755635, 10.118276808318257 7.03876963950988, 9.522705926154401 6.453482367372117, 9.233162876023044 6.444490668153335, 8.757532993208628 5.479665839047911, 8.500287713259695 4.7719829370268485, 7.462108188515941 4.412108262546241, 7.0825964697644395 4.4646890324032285, 6.6980721370806 4.240594183769517, 5.898172641634687 4.262453314628985, 5.3628048030908815 4.887970689305959, 5.033574252959369 5.611802476418234, 4.325607130560684 6.2706511499234665, 3.574180128604553 6.258300482605719, 2.6917016943562544 6.258817246928629)))\">MULTIPOLYGON (((2.6917016943562544 6.<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"MULTIPOLYGON (((0.0238025244237008 11.018681748900804, -0.0497847151599444 10.706917832883931, 0.3675799902453889 10.19121287682718, 0.3659005061958851 9.465003973829482, 0.4611918473421213 8.677222601756014, 0.7120292496868785 8.31246450442383, 0.4909574723422451 7.411744289576475, 0.5703841487748491 6.914358628767189, 0.8369311865363329 6.279978745952149, 1.0601216976049272 5.928837388528876, -0.5076379052659377 5.3434726017426755, -1.0636246402941936 5.000547797053812, -1.9647065901675944 4.710462144383371, -2.856125047202397 4.994475816259509, -2.8107014632178395 5.38905121502411, -3.244370083011262 6.250471503113502, -2.9835849674503265 7.379704901555513, -2.562189500326241 8.219627793811483, -2.8274963037127065 9.642460842319778, -2.9638962467471117 10.395334784380083, -2.9404093082704605 10.962690334512558, -1.2033577132114317 11.009819240762738, -0.7615758935481834 10.936929633015055, -0.4387015445885822 11.098340969278722, 0.0238025244237008 11.018681748900804)))\">MULTIPOLYGON (((0.0238025244237008 11<span class=\"structural\">...</span></span>"] }, \n", "{ name: "<span title=\"country: String\">country</span>", children: [], rightAlign: false, values: ["Canada","United States","Indonesia","Argentina","Chile","Kenya","Russia","South Africa","Mexico","Uruguay","Brazil","Peru","Colombia","Guatemala","Venezuela","Zimbabwe","Namibia","Senegal","Nigeria","Ghana"] }, \n", "{ name: "<span title=\"count: Int\">count</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">177</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2549</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">70</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">14</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">16</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">25</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">100</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">72</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">4</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">31</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">70</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3</span></span>"] }, \n", "{ name: "<span title=\"code: String?\">code</span>", children: [], rightAlign: false, values: ["CA","US","ID","AR","CL","KE","RU","ZA","MX","UY","BR","PE","CO","GT","VE","ZW","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","SN","NG","GH"] }, \n", - "{ name: "<span title=\"lat: Double\">lat</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">61,066692</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">39,783730</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-2,483383</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-34,996496</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-31,761337</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1,441968</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">64,686314</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-28,816624</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22,500049</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-32,875555</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-10,333333</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-6,869970</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2,889443</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15,635609</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8,001871</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-19,016880</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-23,233550</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">14,465177</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">9,600036</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7,857371</span></span>"] }, \n", - "{ name: "<span title=\"lon: Double\">lon</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">-107,991707</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-100,445883</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">117,890285</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-64,967282</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-71,318770</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">38,431398</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">97,745306</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">24,991639</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-100,000038</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-56,020153</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-53,200000</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-75,045852</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-73,783892</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-89,898809</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-66,110932</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29,353650</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">17,323111</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-14,765341</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7,999972</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-1,084098</span></span>"] }, \n", - "], id: -1023409944, rootId: -1023409944, totalRows: 63 } ) });\n", + "{ name: "<span title=\"lat: Double\">lat</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">61.066692</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">39.783730</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-2.483383</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-34.996496</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-31.761337</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1.441968</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">64.686314</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-28.816624</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">22.500049</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-32.875555</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-10.333333</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-6.869970</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2.889443</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15.635609</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">8.001871</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-19.016880</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-23.233550</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">14.465177</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">9.600036</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7.857371</span></span>"] }, \n", + "{ name: "<span title=\"lon: Double\">lon</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">-107.991707</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-100.445883</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">117.890285</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-64.967282</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-71.318770</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">38.431398</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">97.745306</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">24.991639</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-100.000038</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-56.020153</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-53.200000</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-75.045852</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-73.783892</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-89.898809</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-66.110932</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">29.353650</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">17.323111</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-14.765341</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7.999972</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">-1.084098</span></span>"] }, \n", + "], id: 436207848, rootId: 436207848, totalRows: 63 } ) });\n", "/*-->*/\n", "\n", - "call_DataFrame(function() { DataFrame.renderTable(-1023409944) });\n", + "call_DataFrame(function() { DataFrame.renderTable(436207848) });\n", "\n", "\n", " </script>\n", @@ -35411,10 +35729,10 @@ " \n", " \n", " \n", - "
pop_estcontinentnameiso_a3gdp_md_estgeometrycountrycountcodelatlon
35623680North AmericaCanadaCAN1674000,000000MULTIPOLYGON (((-122.84000000000003 4...Canada177CA61,066692-107,991707
326625791North AmericaUnited States of AmericaUSA18560000,000000MULTIPOLYGON (((-122.84000000000003 4...United States2549US39,783730-100,445883
260580739AsiaIndonesiaIDN3028000,000000MULTIPOLYGON (((141.00021040259185 -2...Indonesia70ID-2,483383117,890285
44293293South AmericaArgentinaARG879400,000000MULTIPOLYGON (((-68.63401022758323 -5...Argentina50AR-34,996496-64,967282
17789267South AmericaChileCHL436100,000000MULTIPOLYGON (((-68.63401022758323 -5...Chile14CL-31,761337-71,318770
47615739AfricaKenyaKEN152700,000000MULTIPOLYGON (((39.20222 -4.67677, 37...Kenya2KE1,44196838,431398
142257519EuropeRussiaRUS3745000,000000MULTIPOLYGON (((178.7253 71.0988, 180...Russia16RU64,68631497,745306
54841552AfricaSouth AfricaZAF739100,000000MULTIPOLYGON (((16.344976840895242 -2...South Africa25ZA-28,81662424,991639
124574795North AmericaMexicoMEX2307000,000000MULTIPOLYGON (((-117.12775999999985 3...Mexico100MX22,500049-100,000038
3360148South AmericaUruguayURY73250,000000MULTIPOLYGON (((-57.62513342958296 -3...Uruguay3UY-32,875555-56,020153
207353391South AmericaBrazilBRA3081000,000000MULTIPOLYGON (((-53.373661668498244 -...Brazil72BR-10,333333-53,200000
31036656South AmericaPeruPER410400,000000MULTIPOLYGON (((-69.89363521999663 -4...Peru4PE-6,869970-75,045852
47698524South AmericaColombiaCOL688000,000000MULTIPOLYGON (((-66.87632585312258 1....Colombia31CO2,889443-73,783892
15460732North AmericaGuatemalaGTM131800,000000MULTIPOLYGON (((-92.22775000686983 14...Guatemala1GT15,635609-89,898809
31304016South AmericaVenezuelaVEN468600,000000MULTIPOLYGON (((-60.73357418480372 5....Venezuela1VE8,001871-66,110932
13805084AfricaZimbabweZWE28330,000000MULTIPOLYGON (((31.19140913262129 -22...Zimbabwe1ZW-19,01688029,353650
2484780AfricaNamibiaNAM25990,000000MULTIPOLYGON (((19.895767856534434 -2...Namibia1null-23,23355017,323111
14668522AfricaSenegalSEN39720,000000MULTIPOLYGON (((-16.71372880702347 13...Senegal1SN14,465177-14,765341
190632261AfricaNigeriaNGA1089000,000000MULTIPOLYGON (((2.6917016943562544 6....Nigeria70NG9,6000367,999972
27499924AfricaGhanaGHA120800,000000MULTIPOLYGON (((0.0238025244237008 11...Ghana3GH7,857371-1,084098
\n", + "
pop_estcontinentnameiso_a3gdp_md_estgeometrycountrycountcodelatlon
35623680North AmericaCanadaCAN1674000.000000MULTIPOLYGON (((-122.84000000000003 4...Canada177CA61.066692-107.991707
326625791North AmericaUnited States of AmericaUSA18560000.000000MULTIPOLYGON (((-122.84000000000003 4...United States2549US39.783730-100.445883
260580739AsiaIndonesiaIDN3028000.000000MULTIPOLYGON (((141.00021040259185 -2...Indonesia70ID-2.483383117.890285
44293293South AmericaArgentinaARG879400.000000MULTIPOLYGON (((-68.63401022758323 -5...Argentina50AR-34.996496-64.967282
17789267South AmericaChileCHL436100.000000MULTIPOLYGON (((-68.63401022758323 -5...Chile14CL-31.761337-71.318770
47615739AfricaKenyaKEN152700.000000MULTIPOLYGON (((39.20222 -4.67677, 37...Kenya2KE1.44196838.431398
142257519EuropeRussiaRUS3745000.000000MULTIPOLYGON (((178.7253 71.0988, 180...Russia16RU64.68631497.745306
54841552AfricaSouth AfricaZAF739100.000000MULTIPOLYGON (((16.344976840895242 -2...South Africa25ZA-28.81662424.991639
124574795North AmericaMexicoMEX2307000.000000MULTIPOLYGON (((-117.12775999999985 3...Mexico100MX22.500049-100.000038
3360148South AmericaUruguayURY73250.000000MULTIPOLYGON (((-57.62513342958296 -3...Uruguay3UY-32.875555-56.020153
207353391South AmericaBrazilBRA3081000.000000MULTIPOLYGON (((-53.373661668498244 -...Brazil72BR-10.333333-53.200000
31036656South AmericaPeruPER410400.000000MULTIPOLYGON (((-69.89363521999663 -4...Peru4PE-6.869970-75.045852
47698524South AmericaColombiaCOL688000.000000MULTIPOLYGON (((-66.87632585312258 1....Colombia31CO2.889443-73.783892
15460732North AmericaGuatemalaGTM131800.000000MULTIPOLYGON (((-92.22775000686983 14...Guatemala1GT15.635609-89.898809
31304016South AmericaVenezuelaVEN468600.000000MULTIPOLYGON (((-60.73357418480372 5....Venezuela1VE8.001871-66.110932
13805084AfricaZimbabweZWE28330.000000MULTIPOLYGON (((31.19140913262129 -22...Zimbabwe1ZW-19.01688029.353650
2484780AfricaNamibiaNAM25990.000000MULTIPOLYGON (((19.895767856534434 -2...Namibia1null-23.23355017.323111
14668522AfricaSenegalSEN39720.000000MULTIPOLYGON (((-16.71372880702347 13...Senegal1SN14.465177-14.765341
190632261AfricaNigeriaNGA1089000.000000MULTIPOLYGON (((2.6917016943562544 6....Nigeria70NG9.6000367.999972
27499924AfricaGhanaGHA120800.000000MULTIPOLYGON (((0.0238025244237008 11...Ghana3GH7.857371-1.084098
\n", " \n", " \n", " " ], @@ -35430,8 +35748,13 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:12.295403Z", - "start_time": "2025-12-09T10:17:11.890580Z" + "end_time": "2025-12-19T15:16:18.507528840Z", + "start_time": "2025-12-19T15:16:15.053595395Z" + }, + "executionRelatedData": { + "compiledClasses": [ + "Line_142_jupyter" + ] } }, "cell_type": "code", @@ -35462,7 +35785,7 @@ " <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n", " </head>\n", " <body>\n", - " <div id="q2Q6My"></div>\n", + " <div id="EZmzwP"></div>\n", " <script type="text/javascript" data-lets-plot-script="plot">\n", " \n", " (function() {\n", @@ -35487,7 +35810,7 @@ " };\n", " }\n", " \n", - " const containerDiv = document.getElementById("q2Q6My");\n", + " const containerDiv = document.getElementById("EZmzwP");\n", " let fig = null;\n", " \n", " function renderPlot() {\n", @@ -35600,7 +35923,7 @@ " \n", " </script>\n", " </body>\n", - "</html>\"> \n", + "</html>\"> \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35749,56 +36072,56 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35806,11 +36129,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35822,11 +36145,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35838,7 +36161,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35850,15 +36173,15 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35866,7 +36189,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35874,43 +36197,43 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35926,11 +36249,11 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35938,15 +36261,15 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35954,19 +36277,19 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35974,7 +36297,7 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -35982,15 +36305,15 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -36002,14 +36325,14 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", " \n", " \n", " \n", @@ -36121,10 +36444,10 @@ " \n", " \n", " \n", - " \n", + " \n", " \n", "\n", - " " + " " ], "application/plot+json": { "output_type": "lets_plot_spec", @@ -36354,14 +36677,14 @@ { "metadata": { "ExecuteTime": { - "end_time": "2025-12-09T10:17:12.475964Z", - "start_time": "2025-12-09T10:17:12.475045Z" + "end_time": "2025-12-19T15:16:19.350533031Z", + "start_time": "2025-12-19T15:16:18.773122473Z" } }, "cell_type": "code", "source": "", "outputs": [], - "execution_count": null + "execution_count": 58 } ], "metadata": { From e68b29235afa47faaa30c5fc4a5ea84cb23cf265 Mon Sep 17 00:00:00 2001 From: Jolan Rensen Date: Fri, 19 Dec 2025 17:22:41 +0100 Subject: [PATCH 3/3] fixed compilation regarding explicit reified types --- .../kotlin/org/jetbrains/kotlinx/dataframe/api/gather.kt | 4 ++-- .../test/kotlin/org/jetbrains/kotlinx/dataframe/api/get.kt | 2 +- .../kotlin/org/jetbrains/kotlinx/dataframe/api/inferType.kt | 2 +- .../org/jetbrains/kotlinx/dataframe/io/ParserTests.kt | 6 +++--- .../kotlinx/dataframe/puzzles/CleaningDataTests.kt | 3 ++- .../jetbrains/kotlinx/dataframe/rendering/PrecisionTests.kt | 4 ++-- .../kotlinx/dataframe/testSets/person/DataFrameTests.kt | 2 +- .../org/jetbrains/kotlinx/dataframe/types/DoubleTests.kt | 4 ++-- 8 files changed, 14 insertions(+), 13 deletions(-) diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/gather.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/gather.kt index 59885d4b92..0eb3a2e0af 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/gather.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/gather.kt @@ -143,8 +143,8 @@ class GatherTests { @Test fun `gather mix of columns`() { - val a by columnOf(1, 1.1) - val b by columnOf(2, 2.2) + val a by columnOf(1, 1.1) + val b by columnOf(2, 2.2) val df = dataFrameOf(a, b)[0..0] diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/get.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/get.kt index f2a0ede4f7..c206349a80 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/get.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/get.kt @@ -52,7 +52,7 @@ class GetTests { val throwable = shouldThrow { df[column("c")] } throwable.message shouldContain "Column not found: '[c]'" - val added = df.add(A::c) { "3" }[0] + val added = df.add(A::c) { "3" }[0] shouldThrow { added.getValue(c) + 1 } shouldThrow { added.getValue("c") + 1 } diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/inferType.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/inferType.kt index 36dde5ad89..1025e9b873 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/inferType.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/inferType.kt @@ -8,7 +8,7 @@ class InferTypeTests { @Test fun `infer type 1`() { - val col by columnOf("Alice", 1, 3.5) + val col by columnOf>("Alice", 1, 3.5) col.type() shouldBe typeOf>() val filtered = col.filter { it is String } filtered.type() shouldBe typeOf>() diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/ParserTests.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/ParserTests.kt index 5faaf255a2..309a2e372e 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/ParserTests.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/io/ParserTests.kt @@ -66,13 +66,13 @@ class ParserTests { @Test(expected = TypeConversionException::class) fun `converter for mixed column should throw`() { - val col by columnOf(1, "a") + val col by columnOf(1, "a") col.convertTo() } @Test fun `convert mixed column`() { - val col by columnOf(1.0, "1") + val col by columnOf(1.0, "1") val converted = col.convertTo() converted.type() shouldBe typeOf() converted[0] shouldBe 1 @@ -90,7 +90,7 @@ class ParserTests { @Test fun `convert to Boolean`() { - val col by columnOf(BigDecimal(1.0), BigDecimal(0.0), 0, 1, 10L, 0.0, 0.1) + val col by columnOf(BigDecimal(1.0), BigDecimal(0.0), 0, 1, 10L, 0.0, 0.1) col.convertTo().shouldBe( DataColumn.createValueColumn("col", listOf(true, false, false, true, true, false, true), typeOf()), ) diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/puzzles/CleaningDataTests.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/puzzles/CleaningDataTests.kt index 2e91b03591..d8dbdf599b 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/puzzles/CleaningDataTests.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/puzzles/CleaningDataTests.kt @@ -122,7 +122,8 @@ class CleaningDataTests { ) df.convert { recentDelays }.with { it.map { d -> d.toDouble() } } - .split { recentDelays }.default(Double.NaN).into { "delay_$it" }[delay1, delay2, delay3] shouldBe expected + .split { recentDelays }.default<_, _, Number>(Double.NaN) + .into { "delay_$it" }[delay1, delay2, delay3] shouldBe expected df.convert { "RecentDelays">() }.with { it.map { d -> d.toDouble() } } .split { "RecentDelays">() }.default(Double.NaN).into { diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/rendering/PrecisionTests.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/rendering/PrecisionTests.kt index 689605ba4d..2dd95be2c6 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/rendering/PrecisionTests.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/rendering/PrecisionTests.kt @@ -16,9 +16,9 @@ class PrecisionTests { fun precision() { columnOf(1.2, 3.2).scale() shouldBe 1 columnOf(1.1232, 3.2).scale() shouldBe 4 - columnOf(1.1220001, 12313).scale() shouldBe DEFAULT_PRECISION + columnOf(1.1220001, 12313).scale() shouldBe DEFAULT_PRECISION columnOf(1, 2).scale() shouldBe 0 - columnOf(1.0, 2).scale() shouldBe 1 + columnOf(1.0, 2).scale() shouldBe 1 columnOf(123121.0, -1231.0).scale() shouldBe 1 columnOf(123121.00001, -1231.120).scale() shouldBe 5 columnOf(0.000343434343434343434343).scale() shouldBe DEFAULT_PRECISION diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/testSets/person/DataFrameTests.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/testSets/person/DataFrameTests.kt index ad47104275..59c8ef71f1 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/testSets/person/DataFrameTests.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/testSets/person/DataFrameTests.kt @@ -2351,7 +2351,7 @@ class DataFrameTests : BaseTest() { @Test fun splitIntoThisAndNewColumn() { - val split = typed.split { name }.by { listOf(it.dropLast(1), it.last()) }.into("name", "lastChar") + val split = typed.split { name }.by { listOf(it.dropLast(1), it.last()) }.into("name", "lastChar") split.columnNames().sorted() shouldBe (typed.columnNames() + "lastChar").sorted() } diff --git a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types/DoubleTests.kt b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types/DoubleTests.kt index 9c81304aa4..a68a1e8c57 100644 --- a/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types/DoubleTests.kt +++ b/core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types/DoubleTests.kt @@ -12,9 +12,9 @@ class DoubleTests { @Test fun `filter not null with nans`() { - val age by columnOf(2.3, Double.NaN, 1.0, "asd", 3, 'a') + val age by columnOf(2.3, Double.NaN, 1.0, "asd", 3, 'a') val df = dataFrameOf(age) - df.filter { age() == Double.NaN }.nrow shouldBe 1 + df.filter { (age() as? Double)?.isNaN() == true }.nrow shouldBe 1 df.filter { age().isNaN }.nrow shouldBe 1 df.filter { it[age].isNaN }.nrow shouldBe 1 }